Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Features/updates for bio-weapon characters #168

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions Monsters/c_monster_override.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[
{
"id": "mon_secubot",
"copy-from": "mon_secubot",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_talon_m202a1",
"copy-from": "mon_talon_m202a1",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_dispatch_military",
"copy-from": "mon_dispatch_military",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_turret_searchlight",
"copy-from": "mon_turret_searchlight",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_laserturret",
"copy-from": "mon_laserturret",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_turret_bmg",
"copy-from": "mon_turret_bmg",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_turret_rifle",
"copy-from": "mon_turret_rifle",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
},
{
"id": "mon_crows_m240",
"copy-from": "mon_crows_m240",
"type": "MONSTER",
"species": [ "ROBOT_MILITARY" ]
}
]
4 changes: 3 additions & 1 deletion Monsters/c_monsters.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"material": [ "flesh" ],
"symbol": "B",
"color": "red_cyan",
"aggression": 100,
"aggression": 5,
"morale": 100,
"melee_skill": 6,
"melee_dice": 4,
Expand All @@ -86,6 +86,8 @@
"harvest": "CBM_FAILED_BIO",
"special_attacks": [ [ "SHOCKSTORM", 15 ], [ "PARROT", 80 ] ],
"special_when_hit": [ "ZAPBACK", 75 ],
"anger_triggers": [ "FRIEND_DIED", "FRIEND_ATTACKED", "HURT", "STALK", "PLAYER_CLOSE" ],
"placate_triggers": [ "FIRE" ],
"death_drops": "wild_bio_weapom_item",
"death_function": [ "ACID", "NORMAL" ],
"flags": [
Expand Down
7 changes: 7 additions & 0 deletions Monsters/c_species.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,12 @@
"id": "FBIO-WEAPON",
"anger_triggers": [ ],
"fear_triggers": [ ]
},
{
"type": "SPECIES",
"id": "ROBOT_MILITARY",
"description": "a robot",
"footsteps": "mechanical whirring.",
"anger_triggers": [ "PLAYER_CLOSE", "HURT", "FRIEND_ATTACKED", "FRIEND_DIED" ]
}
]
20 changes: 15 additions & 5 deletions Mutations/c_bio_mutation.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"description": "Your genome is unique to you, this is a DNA marker identifying you as Bio-Weapon Alpha. It may prove useful one day.",
"valid": false,
"purifiable": false,
"profession": true
"profession": true,
"fat_to_max_hp": 1.0,
"dodge_modifier": 1
},
{
"type": "mutation",
Expand All @@ -17,7 +19,9 @@
"description": "Your genome is unique to you, this is a DNA marker identifying you as Bio-Weapon Beta. It may prove useful one day.",
"valid": false,
"purifiable": false,
"profession": true
"profession": true,
"stamina_regen_modifier": 0.25,
"bleed_resist": 1
},
{
"type": "mutation",
Expand All @@ -27,7 +31,9 @@
"description": "Your genome is unique to you, this is a DNA marker identifying you as Bio-Weapon Gamma. It may prove useful one day.",
"valid": false,
"purifiable": false,
"profession": true
"profession": true,
"craft_skill_bonus": [ [ "computer", 2 ], [ "electronics", 2 ], [ "firstaid", 2 ] ],
"anger_relations": [ [ "ROBOT", -95 ] ]
},
{
"type": "mutation",
Expand All @@ -37,7 +43,10 @@
"description": "Your genome is unique to you, this is a DNA marker identifying you as Bio-Weapon Delta. It may prove useful one day.",
"valid": false,
"purifiable": false,
"profession": true
"profession": true,
"stealth_modifier": 15,
"noise_modifier": 0.85,
"scent_modifier": 0.85
},
{
"type": "mutation",
Expand All @@ -57,7 +66,8 @@
"description": "This DNA marker serves as a reminder of what you are - another failure in this world. It identifies you as a Failed Bio-Weapon.",
"valid": false,
"purifiable": false,
"profession": true
"profession": true,
"anger_relations": [ [ "FBIO-WEAPON", -25 ] ]
},
{
"type": "mutation",
Expand Down