forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Default quadruped animal weakpoint set (CleverRaven#74873)
* Create quadruped_weakpoints_animal.json * something's fishy * remaining stuff * thingimabobber
- Loading branch information
Showing
6 changed files
with
191 additions
and
51 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
data/json/monster_weakpoints/quadruped_weakpoints_animal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[ | ||
{ | ||
"type": "weakpoint_set", | ||
"id": "wps_animal_quadruped", | ||
"weakpoints": [ | ||
{ | ||
"name": "the head", | ||
"armor_mult": { "physical": 0.75 }, | ||
"crit_mult": { "all": 1.1 }, | ||
"difficulty": { "melee": 2, "ranged": 5 }, | ||
"coverage_mult": { "ranged": 0.75 }, | ||
"coverage": 3, | ||
"effects": [ | ||
{ | ||
"effect": "stunned", | ||
"duration": [ 1, 2 ], | ||
"chance": 5, | ||
"message": "The %s is stunned!", | ||
"damage_required": [ 1, 10 ] | ||
}, | ||
{ | ||
"effect": "stunned", | ||
"duration": [ 1, 2 ], | ||
"chance": 25, | ||
"message": "The %s is stunned!", | ||
"damage_required": [ 11, 50 ] | ||
}, | ||
{ | ||
"effect": "stunned", | ||
"duration": [ 1, 2 ], | ||
"chance": 45, | ||
"message": "The %s is stunned!", | ||
"damage_required": [ 51, 100 ] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "the eye", | ||
"armor_mult": { "physical": 0 }, | ||
"coverage": 1, | ||
"crit_mult": { "all": 1.25 }, | ||
"coverage_mult": { "ranged": 0.5 }, | ||
"difficulty": { "melee": 10, "ranged": 10 }, | ||
"effects": [ | ||
{ "effect": "blind", "duration": [ 1, 2 ], "chance": 25, "message": "The %s is blinded!", "damage_required": [ 1, 25 ] }, | ||
{ | ||
"effect": "blind", | ||
"permanent": true, | ||
"chance": 30, | ||
"message": "The %s's eyes are obliterated!", | ||
"damage_required": [ 26, 100 ] | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "the leg", | ||
"difficulty": { "melee": 1, "ranged": 2 }, | ||
"coverage_mult": { "point": 0.75 }, | ||
"effects": [ | ||
{ "effect": "staggered", "chance": 25, "message": "The %s is knocked off-balance!", "damage_required": [ 10, 25 ] }, | ||
{ "effect": "downed", "chance": 33, "message": "The %s is knocked down!", "damage_required": [ 26, 100 ] } | ||
], | ||
"coverage": 16 | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.