1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
push_textdomain("tribes")
dirname = path.dirname(__file__)
descriptions:new_immovable_type {
name = "atlanteans_shipconstruction",
-- TRANSLATORS: This is an immovable name used in lists of immovables
descname = pgettext("immovable", "Ship Under Construction"),
icon = dirname .. "menu.png",
size = "small",
programs = {
main = {
"construct=idle duration:5s decay_after:3m30s",
"transform=bob:atlanteans_ship",
}
},
buildcost = {
planks = 10,
log = 2,
spidercloth = 4
},
animation_directory = dirname,
animations = {
idle = {
basename = "build",
hotspot = { 118, 94 },
fps = 1,
representative_frame = 5
},
}
}
pop_textdomain()
|