Skip to content

Commit 6f135f9

Browse files
authored
Merge pull request #94 from Theawesomeboophis/Fallout-Expansion
[Fallout] Fallout Content Expansion thanks to Theawesomeboophis' work
2 parents 7f8d968 + 4f75c33 commit 6f135f9

File tree

11 files changed

+1589
-11
lines changed

11 files changed

+1589
-11
lines changed

Kenan-Modpack/Fallout_CDDA/Items/comestible/coreregion_comestible.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@
113113
"calories": 35,
114114
"description": "Healing Powder mixed into a sweet drink. It tastes better, is better for you, and helps you sleep. It's a miracle drug. Just don't use it in combat.",
115115
"price": 80,
116+
"use_action": {
117+
"type": "consume_drug",
118+
"activation_message": "You drink some Healing Drink.",
119+
"effects": [ { "id": "pkill1", "duration": 1080 }, { "id": "sleep", "duration": 100 } ]
120+
},
116121
"material": [ "fruit", "veggy" ],
117122
"volume": "250 ml",
118123
"phase": "liquid",

Kenan-Modpack/Fallout_CDDA/Items/comestible/med.json

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,32 @@
2121
"effects": [ { "id": "pblue", "duration": 7200 } ]
2222
}
2323
},
24+
{
25+
"id": "med_x",
26+
"type": "COMESTIBLE",
27+
"comestible_type": "MED",
28+
"name": { "str": "Med-X" },
29+
"description": "Med-X, meant to make you resist poison.",
30+
"weight": "1 g",
31+
"volume": "212 ml",
32+
"price": 67,
33+
"price_postapoc": 90,
34+
"charges": 76,
35+
"stack_size": 100,
36+
"flags": [ "NPC_SAFE", "IRREPLACEABLE_CONSUMABLE" ],
37+
"symbol": "r",
38+
"color": "red",
39+
"phase": "liquid",
40+
"use_action": {
41+
"type": "consume_drug",
42+
"activation_message": "You inject some Med-X.",
43+
"tools_needed": { "syringe": -1 },
44+
"effects": [ { "id": "med_x_effect", "duration": 100 } ]
45+
}
46+
},
2447
{
2548
"id": "drugs_rare",
2649
"type": "item_group",
27-
"items": [ [ "rad_x", 50 ] ]
50+
"items": [ [ "rad_x", 10 ], [ "med_x", 10 ] ]
2851
}
2952
]
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[
2+
{
3+
"type": "COMESTIBLE",
4+
"id": "tato",
5+
"name": { "str": "tato", "str_pl": "tatos" },
6+
"looks_like": "tomato",
7+
"weight": "77 g",
8+
"color": "red",
9+
"spoils_in": "4 days",
10+
"comestible_type": "FOOD",
11+
"symbol": "%",
12+
"quench": 4,
13+
"healthy": 15,
14+
"calories": 136,
15+
"description": "A combination of a tomato and potato.",
16+
"price": 75,
17+
"material": [ "fruit" ],
18+
"volume": "250 ml",
19+
"fun": 4,
20+
"flags": [ "EDIBLE_FROZEN" ],
21+
"vitamins": [ [ "vitC", 6 ] ]
22+
},
23+
{
24+
"type": "COMESTIBLE",
25+
"id": "carrot_flower",
26+
"name": { "str": "carrot flower", "str_pl": "carrot flowers" },
27+
"weight": "1 g",
28+
"color": "yellow",
29+
"spoils_in": "1 days",
30+
"comestible_type": "FOOD",
31+
"symbol": "%",
32+
"healthy": 17,
33+
"calories": 30,
34+
"description": "A edible flower commonly farmed in boston for the taste.",
35+
"price": 75,
36+
"material": [ "veggy" ],
37+
"volume": "250 ml",
38+
"fun": 1,
39+
"flags": [ "EDIBLE_FROZEN" ],
40+
"vitamins": [ [ "vitA", 6 ] ]
41+
}
42+
]

0 commit comments

Comments
 (0)