Skip to content

Commit

Permalink
play-testing changes, secubots dont explode
Browse files Browse the repository at this point in the history
  • Loading branch information
pisskop committed Oct 8, 2017
1 parent 9ddcd7a commit 95161c6
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 18 deletions.
6 changes: 3 additions & 3 deletions items/armor.json
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
"symbol": "[",
"color": "ltgray",
"covers": [ "HANDS" ],
"coverage": 100,
"coverage": 90,
"encumbrance": 12,
"warmth": 15,
"material_thickness": 2,
Expand Down Expand Up @@ -580,7 +580,7 @@
{
"type" : "ARMOR",
"id" : "swat_shield_act",
"name" : "tactical shield",
"name" : "tactical shield (Def)",
"description" : "A ballistic shield designed to protect the approach of its holder and anybody standing behind them. It is heavy and somewhat cumbersome, but its protection cannot be denied. It is currently being used, and slowing you down.",
"weight" : 8840,
"color" : "dkgray",
Expand All @@ -593,7 +593,7 @@
"symbol" : "{",
"flags" : ["OVERSIZE", "RESTRICT_HANDS", "ALLOWS_NATURAL_ATTACKS", "BLOCK_WHILE_WORN"],
"techniques" : [ "WBLOCK_3", "BRUTAL" ],
"coverage" : 75,
"coverage" : 80,
"material_thickness" : 2,
"use_action": {
"type": "transform",
Expand Down
15 changes: 15 additions & 0 deletions items/melee.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,19 @@
[
{
"type":"GENERIC",
"id": "sword_nail",
"symbol" : "!",
"color": "light_gray",
"name": "nord",
"description": "The nail sword, or nord for short. This wooden sword has a dozen nails sticking at jagged angles from edge of the blade, making it much better at chopping than slashing.",
"material": "wood",
"volume": 7,
"weight": 648,
"bashing": 12,
"cutting": 4,
"to_hit": 1,
"techniques": ["WBLOCK_1"]
},
{
"id": "ax",
"type": "TOOL",
Expand Down
2 changes: 1 addition & 1 deletion items/tool.json
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@
"id": "fridge_cargo",
"name": "ice box",
"description": "A large fridge unit spacious enough you you to stand in and stow copious amounts of food safely. Shelves are smaller and well-covered, and various homemade straps and holders exist to secure materials.",
"weight": 11752,
"weight": 27752,
"to_hit": -10,
"color": "light_blue",
"symbol": "]",
Expand Down
3 changes: 2 additions & 1 deletion monsters/robot.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"id": "mon_secubot",
"type": "MONSTER",
"copy-from": "mon_secubot",
"vision_night": 10
"vision_night": 10,
"death_function": [ "SMOKEBURST" ]
},
{
"id": "mon_copbot",
Expand Down
10 changes: 5 additions & 5 deletions monsters/zombie.json
Original file line number Diff line number Diff line change
Expand Up @@ -1317,15 +1317,15 @@
"melee_dice_sides": 3,
"melee_cut": 5,
"dodge": 4,
"armor_bash": 12,
"armor_cut": 6,
"vision_day": 40,
"armor_bash": 8,
"armor_cut": 4,
"vision_day": 25,
"vision_night": 20,
"special_attacks": [
[ "SMASH", 40 ],
[ "STRETCH_ATTACK", 20 ],
[ "STRETCH_ATTACK", 30 ],
[ "LONGSWIPE", 30 ],
{ "id": "hammer", "cooldown": 30, "accuracy": 5,
{ "id": "hammer", "cooldown": 40, "accuracy": 5,
"damage_max_instance": [
{ "damage_type": "bash", "amount": 24, "armor_multiplier": 0.75 }
]
Expand Down
6 changes: 4 additions & 2 deletions pk_effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"max_intensity": 6,
"base_mods": {
"rad_min": [-1],
"rad_chance": [24]
"rad_chance": [20]
},
"scaling_mods": {
"health_amount": [-1],
Expand Down Expand Up @@ -87,6 +87,8 @@
{
"type": "effect_type",
"id": "tummy_tablet",
"name": [ "Soothed Stomach." ],
"desc": [ "You are under the effects of a stomach soother." ],
"int_add_val": 1,
"max_intensity": 3,
"base_mods": {
Expand Down Expand Up @@ -461,7 +463,7 @@
"resist_effects": ["took_flumed", "INFRESIST", "DISRESISTANT"],
"harmful_cough": true,
"base_mods": {
"speed_mod": [-12],
"speed_mod": [-12, -10],
"thirst_tick": [180, 240],
"thirst_min": [1],
"fatigue_tick": [50],
Expand Down
10 changes: 6 additions & 4 deletions pk_effects_override.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"type": "effect_type",
"id": "pblue",
"name": [ "On The Blue" ],
"desc": [ "You have recently taken a prussain Blue pill. More will not speed up the process." ],
"desc": [ "You have recently taken a Prussain Blue pill. It will slowly cleanse your body of radiation, and more will not speed up the process." ],
"base_mods": {
"rad_chance": [180],
"rad_min": [-1]
"rad_min": [-1, -2]
}
},
{
Expand Down Expand Up @@ -202,7 +202,8 @@
"rad_max_val": [50],
"h_mod_min": [-1],
"h_mod_tick": [60],
"h_mod_chance": [15]
"h_mod_chance": [15],
"h_mod_min_value": [-100]
},
"scaling_mods": {
"per_mod": [-1, -0.5],
Expand Down Expand Up @@ -256,7 +257,8 @@
"rad_chance": [180, 360],
"h_mod_min": [-1],
"h_mod_tick": [60],
"h_mod_chance": [10]
"h_mod_chance": [10],
"h_mod_min_value": [-100]
},
"scaling_mods": {
"per_mod": [-1],
Expand Down
4 changes: 2 additions & 2 deletions pk_overmap_freqloc.json
Original file line number Diff line number Diff line change
Expand Up @@ -748,8 +748,8 @@
"rotate": true
},{
"type": "overmap_special",
"id": "Strangle Temple",
"copy-from" : "Strangle Temple",
"id": "Strange Temple",
"copy-from" : "Strange Temple",
"occurrences": [0, 2]
},{
"type": "overmap_special",
Expand Down

0 comments on commit 95161c6

Please sign in to comment.