1dirname = path.dirname(__file__)
2
3tribes:new_ware_type {
4   msgctxt = "atlanteans_ware",
5   name = "atlanteans_bread",
6   -- TRANSLATORS: This is a ware name used in lists of wares
7   descname = pgettext("atlanteans_ware", "Bread"),
8   helptext_script = dirname .. "helptexts.lua",
9   icon = dirname .. "menu.png",
10   default_target_quantity = {
11      atlanteans = 20
12   },
13   preciousness = {
14      atlanteans = 5
15   },
16
17   animations = {
18      idle = {
19         pictures = path.list_files(dirname .. "idle.png"),
20         hotspot = { 9, 13 },
21      },
22   }
23}
24