@@ -53,7 +53,9 @@ class ItemStack(Model):
53
53
# * Items
54
54
# ----------------------------------------------------------------------------------------------------
55
55
ITEMS = [
56
- # Weapons
56
+ # ----------------------------------------------------------------------------------------------------
57
+ # * Weapon Equippables
58
+ # ----------------------------------------------------------------------------------------------------
57
59
Item (
58
60
id = "dagger" ,
59
61
name = "Dagger" ,
@@ -150,7 +152,9 @@ class ItemStack(Model):
150
152
speed_bonus = 1 ,
151
153
price = 35000 ,
152
154
),
153
- # Armor
155
+ # ----------------------------------------------------------------------------------------------------
156
+ # * Armor Equippables
157
+ # ----------------------------------------------------------------------------------------------------
154
158
Item (
155
159
id = "shield" ,
156
160
name = "Shield" ,
@@ -198,7 +202,9 @@ class ItemStack(Model):
198
202
speed_bonus = - 1 ,
199
203
price = 45000 ,
200
204
),
201
- # Footwear
205
+ # ----------------------------------------------------------------------------------------------------
206
+ # * Footwear Equippables
207
+ # ----------------------------------------------------------------------------------------------------
202
208
Item (
203
209
id = "sandals" ,
204
210
name = "Sandals" ,
@@ -233,7 +239,9 @@ class ItemStack(Model):
233
239
defense_bonus = 1 ,
234
240
price = 30000 ,
235
241
),
236
- # Consumables
242
+ # ----------------------------------------------------------------------------------------------------
243
+ # * Consumables
244
+ # ----------------------------------------------------------------------------------------------------
237
245
Item (
238
246
id = "potion" ,
239
247
name = "Potion" ,
@@ -260,12 +268,12 @@ class ItemStack(Model):
260
268
id = "cookie" ,
261
269
name = "Cookie" ,
262
270
description = "A delicious cookie that restores a small amount of health and energy." ,
263
- emoji = "" ,
271
+ emoji = "<:cookie:1351081122267660349> " ,
264
272
alt_emoji = "🍪" ,
265
- icon_url = "" ,
273
+ icon_url = "https://cdn.discordapp.com/attachments/1348859490203734057/1351081403634417695/cookie.png?ex=67d9141c&is=67d7c29c&hm=4ae302921dc66a87b29814141acb8ab666386ac15d9167be43926efc8d5d053d& " ,
266
274
type = ItemType .CONSUMABLE ,
267
275
health_bonus = 1 ,
268
276
energy_bonus = 1 ,
269
- price = 20 ,
277
+ price = 50 ,
270
278
),
271
279
]
0 commit comments