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.
Added power leech weakponts and proficiencies (CleverRaven#69638)
* Added power leech weakponts and proficiencies * spelling errors
- Loading branch information
1 parent
011beab
commit dc23b79
Showing
6 changed files
with
139 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
[ | ||
{ | ||
"type": "weakpoint_set", | ||
"id": "wps_power_leech", | ||
"weakpoints": [ | ||
{ | ||
"id": "frond", | ||
"name": "the frond", | ||
"crit_mult": { "all": 0.75 }, | ||
"difficulty": { "ranged": 4, "melee": 3 }, | ||
"coverage_mult": { "point": 0.75 }, | ||
"effects": [ | ||
{ "effect": "staggered", "chance": 15, "message": "The %s is knocked off-balance!", "damage_required": [ 10, 30 ] }, | ||
{ | ||
"effect": "staggered", | ||
"chance": 25, | ||
"message": "The %s is knocked off-balance!", | ||
"damage_required": [ 31, 100 ] | ||
} | ||
], | ||
"coverage": 6 | ||
}, | ||
{ | ||
"id": "rhizome", | ||
"name": "the rhizome", | ||
"crit_mult": { "all": 0.75 }, | ||
"difficulty": { "ranged": 3, "melee": 1 }, | ||
"coverage_mult": { "point": 0.75 }, | ||
"effects": [ | ||
{ "effect": "downed", "chance": 5, "message": "The %s is knocked down!", "damage_required": [ 10, 30 ] }, | ||
{ "effect": "downed", "chance": 15, "message": "The %s is knocked down!", "damage_required": [ 31, 50 ] }, | ||
{ "effect": "downed", "chance": 25, "message": "The %s is knocked down!", "damage_required": [ 51, 100 ] } | ||
], | ||
"coverage": 15 | ||
}, | ||
{ | ||
"id": "crown", | ||
"name": "the crown", | ||
"coverage": 5, | ||
"crit_mult": { "all": 1.1 }, | ||
"armor_mult": { "physical": 0.75 }, | ||
"difficulty": { "melee": 2, "ranged": 5 }, | ||
"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 ] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[ | ||
{ | ||
"type": "snippet", | ||
"category": "<power_leech_harvest>", | ||
"text": [ | ||
"The bark of this plant/creature is tough and leathery and slightly translucent, with blue veins running through it.", | ||
"When you cut this plant-creature open the smell of ozone gets stronger, but it's mixed with a sweet smell from the creature itself.", | ||
"The sap of the beast is a slightly bluish color and seems to be less viscous than animal blood.", | ||
"Despite the creature seemingly being a plant/creature hybrid, the muscles are surprisingly similar to animal muscles, although the color is off.", | ||
"You don't find anything resembling bones in the creature. Instead, it seems it's more similar to terrestial invertebrates.", | ||
"A slight electric discharge gives you a minor shock as you pierce what you assume is an electric organ.", | ||
"You find no external sensory organs in the plant/beast hybrid, but it's quite possible the main means of perception is through electric fields." | ||
] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "<power_leech_harvest_deeper>", | ||
"text": [ | ||
"The blue veins of the vascular system of the creature is extensive, reaching every part of its body.", | ||
"The plant creature seems to have a heart of sorts, although its structure is different from that on any animal you've heard of.", | ||
"You take a closer look at the electric organs, and it seems to be built up of layers of alternating dark and light tissue, which you guess might build up a battery stack of sorts.", | ||
"A closer examination of the rhizomes at the base of the creature indicates they're adapted to movement and clinging to surfaces rather than burrowing into the soil as you would expect from roots.", | ||
"The power organs are surrounded by a complex tissue you suspect is responsible for projection of electric fields the creature used for attack, and, you suspect, sensory perception.", | ||
"A small structure that vaguely resembles a brain is found near the center of the creature." | ||
] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "<power_leech_harvest>", | ||
"text": [ "<power_leech_harvest>", "<power_leech_harvest_deeper>", "<power_leech_harvest> <power_leech_harvest_deeper>" ] | ||
} | ||
] |