Skip to content

Commit 2bbc8e1

Browse files
authored
Merge pull request #90 from Theawesomeboophis/Fallout-Ghouls
[Fallout] Add Ghouls thanks to Theawesomeboophis' work
2 parents 88d8b00 + 6bdb896 commit 2bbc8e1

File tree

4 files changed

+95
-2
lines changed

4 files changed

+95
-2
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[
2+
{
3+
"type": "item_group",
4+
"subtype": "collection",
5+
"id": "scorched_drops",
6+
"entries": [ { "item": "sword_chinese", "prob": 50 }, { "item": "sword_chinese_shock", "prob": 10 } ]
7+
}
8+
]

Kenan-Modpack/Fallout_CDDA/monsters/monster_factions.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"type": "MONSTER_FACTION",
1010
"name": "radscorpion",
1111
"base_faction": "insect",
12-
"by_mood": "radscorpion"
12+
"by_mood": [ "radscorpion" ]
13+
},
14+
{
15+
"type": "MONSTER_FACTION",
16+
"name": "ghoul",
17+
"by_mood": [ "radscorpion", "mantis", "zombie" ]
1318
}
1419
]

Kenan-Modpack/Fallout_CDDA/monsters/monstergroups.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,5 +207,15 @@
207207
{ "monster": "mon_eyebot_mrnewvegas", "freq": 20, "cost_multiplier": 0, "pack_size": [ 1, 2 ] },
208208
{ "monster": "mon_eyebot_gnr_numbers", "freq": 1, "cost_multiplier": 10, "pack_size": [ 1, 2 ] }
209209
]
210+
},
211+
{
212+
"type": "monstergroup",
213+
"name": "GROUP_CITY",
214+
"default": "mon_fallout_ghoul",
215+
"monsters": [
216+
{ "monster": "mon_fallout_ghoul", "freq": 30, "cost_multiplier": 1 },
217+
{ "monster": "mon_radghoul", "freq": 10, "cost_multiplier": 10 },
218+
{ "monster": "mon_scorched", "freq": 50, "cost_multiplier": 5 }
219+
]
210220
}
211221
]
Lines changed: 71 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,73 @@
11
[
2-
2+
{
3+
"id": "mon_fallout_ghoul",
4+
"type": "MONSTER",
5+
"name": { "str": "feral ghoul" },
6+
"description": "Long before the cataclysm, this used to be a normal person, but now they are burned beyond recognition by radiation, this one seems uncivilized and feral.",
7+
"default_faction": "ghoul",
8+
"species": [ "ZOMBIE" ],
9+
"volume": "200 ml",
10+
"weight": "407 g",
11+
"hp": 56,
12+
"speed": 110,
13+
"material": [ "flesh" ],
14+
"symbol": "g",
15+
"color": "red",
16+
"aggression": 100,
17+
"morale": 5,
18+
"melee_dice": 6,
19+
"melee_dice_sides": 7,
20+
"harvest": "zombie",
21+
"death_function": [ "NORMAL" ],
22+
"flags": [ "SEES", "SMELLS", "SWARMS", "SWIMS" ]
23+
},
24+
{
25+
"id": "mon_radghoul",
26+
"type": "MONSTER",
27+
"name": { "str": "Glowing One" },
28+
"description": "This ghoul was engulfed by the radiation that created it, and as a result is uneffected by radiation.",
29+
"default_faction": "ghoul",
30+
"species": [ "ZOMBIE" ],
31+
"volume": "600 ml",
32+
"weight": "900 g",
33+
"hp": 137,
34+
"speed": 97,
35+
"material": [ "flesh" ],
36+
"symbol": "G",
37+
"color": "green",
38+
"aggression": 100,
39+
"morale": 7,
40+
"melee_dice": 8,
41+
"melee_dice_sides": 8,
42+
"luminance": 120,
43+
"harvest": "zombie",
44+
"death_function": [ "NORMAL" ],
45+
"flags": [ "SEES", "SMELLS", "SWIMS", "POISON" ]
46+
},
47+
{
48+
"id": "mon_scorched",
49+
"type": "MONSTER",
50+
"name": { "str": "scorched" },
51+
"description": "This was a human until it succumbed to the scorched plague, now it is a walking husk, it seems to have remembered how to use weapons.",
52+
"default_faction": "ghoul",
53+
"species": [ "ZOMBIE" ],
54+
"volume": "620 ml",
55+
"weight": "345 g",
56+
"hp": 87,
57+
"speed": 98,
58+
"material": [ "flesh" ],
59+
"symbol": "S",
60+
"color": "red",
61+
"aggression": 100,
62+
"morale": 10,
63+
"melee_dice": 5,
64+
"melee_dice_sides": 7,
65+
"melee_cut": 9,
66+
"dodge": 9,
67+
"harvest": "human",
68+
"anger_triggers": [ "PLAYER_CLOSE", "FRIEND_DIED", "FRIEND_ATTACKED", "HURT" ],
69+
"death_function": [ "NORMAL" ],
70+
"death_drops": "scorched_drops",
71+
"flags": [ "HEARS", "SEES", "SWIMS", "GRABS", "PATH_AVOID_DANGER_2" ]
72+
}
373
]

0 commit comments

Comments
 (0)