eco2d/code/game/src/items_list.c

18 lines
331 B
C
Raw Normal View History

2021-08-30 15:50:05 +00:00
#include "items.h"
static item_desc items[] = {
{
2021-11-02 10:48:32 +00:00
.kind = 0,
.max_quantity = 0,
},
{
.kind = ASSET_DEMO_ICEMAKER,
2021-08-30 15:50:05 +00:00
.usage = UKIND_PLACE,
2021-08-30 16:14:35 +00:00
.max_quantity = 64,
2021-08-30 15:50:05 +00:00
.place = {
.biome = BLOCK_BIOME_DEV,
.kind = BLOCK_KIND_WATER,
}
}
};