1dirname = path.dirname(__file__)
2
3animations = {}
4add_animation(animations, "idle", dirname, "idle", {4, 7})
5
6tribes:new_ware_type {
7   msgctxt = "ware",
8   name = "fruit",
9   -- TRANSLATORS: This is a ware name used in lists of wares
10   descname = pgettext("ware", "Fruit"),
11   helptext_script = dirname .. "helptexts.lua",
12   icon = dirname .. "menu.png",
13   default_target_quantity = {},
14   preciousness = {
15      frisians = 1
16   },
17
18   animations = animations,
19}
20