forked from TGWeaver/CDDA-Sky-Islands
-
Notifications
You must be signed in to change notification settings - Fork 0
/
furniture and terrain.json
132 lines (132 loc) · 5.05 KB
/
furniture and terrain.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[
{
"type": "furniture",
"id": "f_exitportal",
"name": "Warp Obelisk",
"description": "A strange statue that will whisk you away to the dangerous world beyond.",
"//": "On examine, activates the EOC chain which lets you teleport away. I made it light and easy to push around so you could reorganize your base easily.",
"symbol": "S",
"color": "dark_gray",
"looks_like": "f_statue",
"move_cost_mod": -1,
"coverage": 0,
"required_str": 1,
"crafting_pseudo_item": "fakeitem_statue",
"flags": [ "NOCOLLIDE", "NO_PICKUP_ON_EXAMINE", "TRANSPARENT" ],
"examine_action": {
"type": "effect_on_condition",
"effect_on_conditions": ["EOC_warp_statue"]
}
},{
"type": "furniture",
"id": "f_returnportal",
"name": "Return Obelisk",
"description": "A strange statue that will take you back home.",
"//": "On examine, activates the EOC which brings you straight home regardless of warp recharge cooldown.",
"symbol": "S",
"color": "dark_gray",
"looks_like": "f_statue",
"move_cost_mod": -1,
"coverage": 0,
"required_str": -1,
"flags": [ "NOCOLLIDE", "NO_PICKUP_ON_EXAMINE", "TRANSPARENT" ],
"examine_action": {
"type": "effect_on_condition",
"effect_on_conditions": ["EOC_statue_return"]
}
},
{
"type": "terrain",
"id": "t_fake_air",
"name": "open air",
"description": "This is the edge of the island. A metaphysical border stops you from going over the edge yourself, but anything you drop here will be gone forever.",
"//": "Literally just added this to prevent people from pushing the warp obelisk off the edge.",
"symbol": " ",
"color": "i_cyan",
"looks_like": "t_open_air",
"move_cost": 0,
"flags": [ "TRANSPARENT", "DESTROY_ITEM", "NO_SHOOT", "BLOCK_WIND", "TRANSPARENT_FLOOR" ]
},
{
"type": "terrain",
"id": "t_traderwall",
"looks_like": "t_wall_glass",
"name": "warpglass wall",
"description": "A shimmering translucent barrier that almost yields to the touch, but adamantly refuses entry.",
"symbol": "LINE_OXOX",
"color": "light_cyan",
"move_cost": 0,
"roof": "t_flat_roof",
"flags": [ "TRANSPARENT", "NOITEM", "WALL", "NO_SCENT", "AUTO_WALL_SYMBOL", "BLOCK_WIND" ],
"shoot": {
"reduce_damage": [ 3800, 4000 ],
"reduce_damage_laser": [ 3800, 4000 ],
"destroy_damage": [ 4000, 5000 ],
"no_laser_destroy": true
}
},
{
"id": "fakeitem_statue",
"type": "TOOL",
"name": { "str": "nearby warp obelisk" },
"description": "This is a crafting_pseudo_item if you have it something is wrong.",
"weight": "70000 g",
"volume": "100 L",
"material": [ "stone" ],
"symbol": "X",
"color": "red"
},
{
"id": "fakeitem_infinitree1",
"type": "TOOL",
"name": { "str": "nearby infinitree" },
"description": "This is a crafting_pseudo_item if you have it something is wrong.",
"weight": "70000 g",
"volume": "100 L",
"material": [ "wood" ],
"symbol": "T",
"color": "red"
},
{
"type": "furniture",
"id": "f_infinitree1",
"name": "infinitree sapling",
"looks_like": "t_tree_young",
"description": "Purple-blue shimmers sparkle around the leaves of this small sapling. New growth seems to spring up in seconds, as if in a timelapse, and yet there never seem to be too many branches. It's always in equilibrium. Its strange nature allows you to shift it around like furniture. You can harvest sticks, logs, and other materials from it using the construction menu.",
"symbol": "7",
"color": "brown",
"move_cost_mod": -1,
"flags": [ "NOITEM", "BLOCK_WIND", "TRANSPARENT" ],
"coverage": 80,
"required_str": 4,
"crafting_pseudo_item": "fakeitem_infinitree1"
},
{
"type": "furniture",
"id": "f_infinitree2",
"name": "infinitree sapling",
"looks_like": "t_tree",
"description": "Purple-blue shimmers sparkle around the leaves of this small sapling. New growth seems to spring up in seconds, as if in a timelapse, and yet there never seem to be too many branches. It's always in equilibrium. Its strange nature allows you to shift it around like furniture. You could probably use this in some recipes.",
"symbol": "7",
"color": "brown",
"move_cost_mod": -1,
"flags": [ "NOITEM", "BLOCK_WIND", "TRANSPARENT" ],
"coverage": 80,
"required_str": 4,
"crafting_pseudo_item": "fakeitem_infinitree1"
},
{
"type": "furniture",
"id": "f_infinitree3",
"name": "infinitree sapling",
"looks_like": "t_tree_pine",
"description": "Purple-blue shimmers sparkle around the leaves of this small sapling. New growth seems to spring up in seconds, as if in a timelapse, and yet there never seem to be too many branches. It's always in equilibrium. Its strange nature allows you to shift it around like furniture. You could probably use this in some recipes.",
"symbol": "7",
"color": "brown",
"move_cost_mod": -1,
"flags": [ "NOITEM", "BLOCK_WIND", "TRANSPARENT" ],
"coverage": 80,
"required_str": 4,
"crafting_pseudo_item": "fakeitem_infinitree1"
}
]