forked from Siyalatas/PKs_Rebalancing
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathphaseout.json
113 lines (113 loc) · 3.49 KB
/
phaseout.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
[
{
"id": "mon_ant_queen_firebug",
"type": "MONSTER",
"//": "Obsolete, kept for savegame compatibility.",
"copy-from": "mon_ant_queen",
"name": { "str": "queen ant" },
"description": "A colossal red ant with a bulging, bloated thorax. It moves slowly and deliberately, tending to nearby eggs and continually laying more. Its antennae seem almost aesthetic, or at the least not used for sensing . . ."
},
{
"id": "acidbomb_micro",
"type": "AMMO",
"category": "weapons",
"name": { "str": "micro acidbomb" },
"description": "A single glass flask filled with caustic chemicals. When exposed to the air they will spray out in every direction, creating a modest field of acid.",
"weight": "285 g",
"volume": "250 ml",
"price": 4500,
"to_hit": -1,
"bashing": 8,
"material": [ "glass" ],
"symbol": "*",
"color": "light_green",
"ammo_type": "thrown",
"effects": [ "RECOVER_9" ],
"flags": [ "ACT_ON_RANGED_HIT" ],
"emits": [ "emit_acid_trail_slow" ],
"countdown_interval": 18,
"countdown_destroy": true,
"countdown_action": { "type": "explosion", "no_deactivate_msg": "The acid bubbles caustically.", "explosion": { } }
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "acidbomb_micro",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_EXPLOSIVE",
"skill_used": "fabrication",
"difficulty": 10,
"time": 900,
"reversible": true,
"autolearn": true,
"components": [ [ [ "clay_canister", 1 ], [ "flask_glass", 1 ] ], [ [ "acid", 1 ] ], [ [ "string_6", 1 ] ], [ [ "rag", 1 ] ] ]
},
{
"id": "acidbomb_medium",
"type": "AMMO",
"category": "weapons",
"name": { "str": "large acidbomb" },
"description": "There is enough frothing fluid inside this acidbomb to coat a relatively large area with fields of acid.",
"weight": "1640 g",
"volume": "500 ml",
"price": 10000,
"to_hit": -1,
"bashing": 8,
"material": [ "glass" ],
"symbol": "*",
"color": "i_green",
"ammo_type": "thrown",
"effects": [ "RECOVER_9" ],
"flags": [ "ACT_ON_RANGED_HIT" ],
"emits": [ "emit_acid_large" ],
"countdown_interval": 8,
"countdown_destroy": true,
"countdown_action": { "type": "explosion", "no_deactivate_msg": "The acid bubbles caustically.", "explosion": { } }
},
{
"id": "emit_acid_medium",
"type": "emit",
"//": "A medium spray of acid. (example: acidbomb medium)",
"field": "fd_acid",
"density": 2,
"qty": 9
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "acidbomb_medium",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_EXPLOSIVE",
"skill_used": "fabrication",
"difficulty": 3,
"time": 1800,
"reversible": true,
"autolearn": true,
"components": [
[ [ "bottle_glass", 1 ] ],
[ [ "clay_canister", 1 ], [ "flask_glass", 1 ] ],
[ [ "acid", 4 ] ],
[ [ "string_36", 1 ] ],
[ [ "rag", 2 ] ]
]
},
{
"type": "recipe",
"activity_level": "LIGHT_EXERCISE",
"result": "acidbomb_medium",
"id_suffix": "jar",
"category": "CC_WEAPON",
"subcategory": "CSC_WEAPON_EXPLOSIVE",
"skill_used": "fabrication",
"difficulty": 10,
"time": 1800,
"reversible": true,
"autolearn": true,
"components": [
[ [ "jar_glass_sealed", 2 ], [ "clay_canister", 4 ], [ "flask_glass", 4 ] ],
[ [ "acid", 4 ] ],
[ [ "string_36", 1 ] ],
[ [ "rag", 3 ] ]
]
}
]