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