eco2d/code/foundation/src/models/items_list.c

21 lines
647 B
C
Raw Normal View History

2022-09-29 14:16:06 +00:00
#include "models/items.h"
#include "world/entity_view.h"
2022-09-15 20:50:48 +00:00
#include "items_list_helpers.h"
2021-11-02 11:49:03 +00:00
static item_desc items[] = {
{ .kind = 0, .max_quantity = 0, },
2022-09-28 13:17:33 +00:00
ITEM_INGREDIENT(ASSET_DEMO_ICEMAKER, 64, ASSET_FURNACE, ASSET_BELT, 0),
ITEM_SELF(ASSET_FENCE, 64),
2022-09-28 13:17:33 +00:00
ITEM_FUEL(ASSET_WOOD, 64, 15.0f),
ITEM_HOLD(ASSET_TREE, 64),
2022-09-28 05:29:32 +00:00
ITEM_SELF_DIR(ASSET_BELT, 999),
ITEM_PROXY(ASSET_BELT_LEFT, ASSET_BELT),
ITEM_PROXY(ASSET_BELT_RIGHT, ASSET_BELT),
ITEM_PROXY(ASSET_BELT_UP, ASSET_BELT),
ITEM_PROXY(ASSET_BELT_DOWN, ASSET_BELT),
2022-09-28 05:29:32 +00:00
ITEM_ENT(ASSET_CHEST, 32, ASSET_CHEST),
2022-09-28 05:29:32 +00:00
ITEM_ENT(ASSET_FURNACE, 32, ASSET_FURNACE),
};