Skip to content

Commit 0666c62

Browse files
Add files via upload
1 parent b64585f commit 0666c62

File tree

8 files changed

+599
-0
lines changed

8 files changed

+599
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Bugs_life
2+
Mod for CDDA. It adds new kinds of mutated insects and more.
3+
4+
Monsters:
5+
6+
-Aphids
7+
8+
-Praying mantises in three sizes
9+
10+
-Underground mole crickets
11+
12+
-Lady bugs
13+
14+
-Grasshoppers in two sizes
15+
16+
-Antlion larvae and adult antlions
17+
18+
-Water striders in two sizes
19+
20+
Aphids and ladybugs are most commonly found near anthills. Aphids can be tamed using cattle fodder, similar to a cow. You don't have to "milk" your new friends, rather wait for it to poop sugary honeydew.
21+
22+
You can extract sugar from honeydew at app. science lvl 4.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[
2+
{
3+
"type": "COMESTIBLE",
4+
"id": "honeydew",
5+
"name": { "str": "honeydew" },
6+
"description": "It's a sugar-rich sticky substance, produced by aphids from plant's sap. Ants and bees love it.",
7+
"weight": "22 g",
8+
"color": "green",
9+
"symbol": "~",
10+
"material": [ "honey" ],
11+
"quench": 4,
12+
"healthy": 0,
13+
"calories": 67,
14+
"charges": 16,
15+
"stim": 0,
16+
"fun": 2 ,
17+
"comestible_type": "FOOD" ,
18+
"flags": ["NUTRIENT_OVERRIDE"],
19+
"volume": "250 ml"
20+
}
21+
]
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[
2+
{
3+
"type": "MOD_INFO",
4+
"ident": "Bug's life",
5+
"name": "Bug's life",
6+
"authors": [ "SuddenEyePuncture" ],
7+
"description": "Add new types of insects, such as aphids, mantises, etc.",
8+
"category": "creatures",
9+
"dependencies": [ "dda" ]
10+
}
11+
]
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[
2+
{
3+
"type": "MONSTER_FACTION",
4+
"name": "antlion",
5+
"base_faction": "insect",
6+
"neutral": [ "antlion" ],
7+
"by_mood": [ "zombie", "fungus", "bee" ],
8+
"hate": [ "insect", "small_animal", "ant", "acid_ant" ]
9+
},
10+
{
11+
"type": "MONSTER_FACTION",
12+
"name": "ladybug",
13+
"base_faction": "insect",
14+
"by_mood": [ "zombie", "bee", "insect" ],
15+
"hate": [ "small_animal", "ant", "acid_ant" ]
16+
},
17+
{
18+
"type": "MONSTER_FACTION",
19+
"name": "mantis",
20+
"base_faction": "insect",
21+
"by_mood": [ "centipede", "spider", "ant", "acid_ant" ],
22+
"hate": [ "insect", "small_animal" ]
23+
},
24+
{
25+
"type": "MONSTER_FACTION",
26+
"name": "strider",
27+
"base_faction": "insect",
28+
"hate": [ "small_animal", "fish"]
29+
}
30+
]

0 commit comments

Comments
 (0)