# Pisskop's Crap

**URL:** https://discourse.cataclysmdda.org/t/pisskops-crap/11019
**Category:** The Lab
**Created:** [December 1, 2015, 6:57pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019 "2015-12-01T18:57:44Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 1, 2015, 6:57pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/1 "2015-12-01T18:57:44Z")

</div>

^^^The tin says it. Depending on how deeply I go into it I do have inklings for buildings and books and more.

* * *

The data is finally made into a mod! It is a collection of my modifications to the game, though it is primarily a rebalancing of monster spawns and monster evolution. Currently there isn’t too much in the way of new material, though that can change.

o/ This is the current version of this. This includes a rebalancing of the child zombie evolutions.  
-[Dropbox](https://www.dropbox.com/s/jvv91i5eyulus3j/PK_Rebalance.zip?dl=0)  
It is listed under ‘balance’ mods on the third tab of mod selection.

-I completely reworked the zombie city spawns. More standard zombies should spawn.

-Slowed down zombie upgrades. To do this I added a second, slightly stronger version of Green Zombies. I also added a seperate pool for these to upgrade into, and gave all ‘groups’ of zombies that upgrade nonlinearly a chance to ‘fail’ and upgrade into themselves.

-Added stronger swimmer zombies and added them as rare spawns in rivers.

-Added an ugraded version of the brute, the Zombie Wrestling Brute. He can bite, trip, throw, grab, and pull you.

-Added a path for zombie to decay. The path is pkzombie --\> pkdecayed zombie --\> Skeleton

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 1, 2015, 7:04pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/2 "2015-12-01T19:04:51Z")

</div>

So wrestling brute.

```
"upgrades":{
  "into": "mon_zombie_brute_grappler",
  "half_life": 28
},

```

```
{
"type" : "MONSTER",
"id" : "mon_zombie_brute_grappler",
"name": "zombie wrestling brute",
"species":"ZOMBIE",
"default_faction":"zombie",
"symbol":"Z",
"color":"red_white",
"size":"MEDIUM",
"material":"flesh",
"diff":25,
"aggression":100,
"morale":100,
"speed":95,
"melee_skill":5,
"melee_dice":3,
"melee_dice_sides":6,
"melee_cut":2,
"dodge":1,
"armor_bash":3,
"armor_cut":1,
"vision_day":40,
"vision_night":4,
"death_drops": "default_zombie_death_drops",
"hp":220,
"death_function":["NORMAL"],
"special_attacks":[["SMASH", 30], ["BIO_OP_TAKEDOWN", 20], ["RANGED_PULL", 20], ["GRAB_DRAG", 6], ["BITE", 10]],
"description":"A slab of festering muscle the size of a well-toned bodybuilder. Seems more eager to strangle the life from you than eat you, though is probably capable of both.",
"flags":["SEES", "HEARS", "SMELLS", "STUMBLES", "WARM", "BASHES", "GROUP_BASH", "POISON", "NO_BREATHE", "REVIVES", "BONES", "PUSH_MON"]
},

```

The result is something less physically imposing than a hulk, way more dangerous than a brute, and equipped with a grapple attack, the drag attack, the smash away attack, an occassional bite attack, and the bionic leg sweep.

I tested it briefly before making it an upgrade. While it was generally no match for my 10 dodging and unarmed debug character, it was quite dangerous.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 1, 2015, 7:10pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/3 "2015-12-01T19:10:12Z")

</div>

And groupzom settings, create a less ‘special’ atmosphere while still keeping them around - and special enough to be called special.

{  
“type”:“monstergroup”,  
“name” : “GROUP\_ZOMBIE”,  
“default” : “mon\_zombie”,  
“monsters” : [  
{ “monster” : “mon\_zombie”, “freq” : 10, “cost\_multiplier”: 1, “pack\_size”: [1,3]},  
{ “monster” : “mon\_zombie”, “freq” : 15, “cost\_multiplier”: 3, “pack\_size”: [2,5]},  
{ “monster” : “mon\_zombie”, “freq” : 10, “cost\_multiplier”: 7, “pack\_size”: [5,10]},  
{ “monster” : “mon\_zombie”, “freq” : 10, “cost\_multiplier”: 13, “pack\_size”: [15,20]},  
{ “monster” : “mon\_zombie”, “freq” : 5, “cost\_multiplier”: 20, “pack\_size”: [25,30]},  
{ “monster” : “mon\_zombie\_fat”, “freq” : 50, “cost\_multiplier”: 2},  
{ “monster” : “mon\_zombie\_fat”, “freq” : 25, “cost\_multiplier”: 8, “pack\_size”: [3,5]},  
{ “monster” : “mon\_zombie\_tough”, “freq” : 75, “cost\_multiplier”: 3},  
{ “monster” : “mon\_zombie\_tough”, “freq” : 25, “cost\_multiplier” : 9, “pack\_size”: [2, 4]},  
{ “monster” : “mon\_zombie\_tough”, “freq” : 5, “cost\_multiplier” : 18, “pack\_size”: [5, 9]},  
{ “monster” : “mon\_zombie\_child”, “freq” : 50, “cost\_multiplier” : 1 },  
{ “monster” : “mon\_zombie\_child”, “freq” : 25, “cost\_multiplier” : 2, “pack\_size”: [1, 3]},  
{ “monster” : “mon\_zombie\_rot”, “freq” : 75, “cost\_multiplier”: 3 },  
{ “monster” : “mon\_zombie\_crawler”, “freq” : 25, “cost\_multiplier”: 3 },  
{ “monster” : “mon\_zombie\_crawler”, “freq” : 1, “cost\_multiplier”: 12, “pack\_size”: [3,5]},  
{ “monster” : “mon\_zombie\_dog”, “freq” : 25, “cost\_multiplier” : 2 },  
{ “monster” : “mon\_zombie\_dog”, “freq” : 10, “cost\_multiplier” : 8, “pack\_size”: [3,5]},  
{ “monster” : “mon\_zombie\_dog”, “freq” : 5, “cost\_multiplier” : 14, “pack\_size”: [5,8]},  
{ “monster” : “mon\_zombie\_dog”, “freq” : 3, “cost\_multiplier” : 20, “pack\_size”: [8,12]},  
{ “monster” : “mon\_dog\_skeleton”, “freq” : 10, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_dog\_skeleton”, “freq” : 5, “cost\_multiplier” : 20, “pack\_size”: [3,5]},  
{ “monster” : “mon\_dog\_zombie\_cop”, “freq” : 5, “cost\_multiplier” : 4 },  
{ “monster” : “mon\_dog\_zombie\_rot”, “freq” : 5, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_soldier”, “freq” : 10, “cost\_multiplier” : 2 },  
{ “monster” : “mon\_zombie\_soldier”, “freq” : 3, “cost\_multiplier” : 8, “pack\_size”: [2,6]},  
{ “monster” : “mon\_zombie\_cop”, “freq” : 20, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_zombie\_hazmat”, “freq” : 10, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_zombie\_fireman”, “freq” : 5, “cost\_multiplier” : 2 },  
{ “monster” : “mon\_zombie\_grabber”, “freq” : 25, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_grabber”, “freq” : 5, “cost\_multiplier” : 20, “pack\_size”: [3,5]},  
{ “monster” : “mon\_zombie\_hunter”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_hunter”, “freq” : 5, “cost\_multiplier” : 15, “pack\_size”: [2,5]},  
{ “monster” : “mon\_skeleton”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_skeleton”, “freq” : 5, “cost\_multiplier” : 25, “pack\_size”: [3,7]},  
{ “monster” : “mon\_zombie\_smoker”, “freq” : 15, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_smoker”, “freq” : 3, “cost\_multiplier” : 10, “pack\_size”: [2,3]},  
{ “monster” : “mon\_zombie\_gasbag”, “freq” : 15, “cost\_multiplier”: 5},  
{ “monster” : “mon\_zombie\_gasbag”, “freq” : 3, “cost\_multiplier”: 20, “pack\_size”: [3,5]},  
{ “monster” : “mon\_zombie\_swimmer”, “freq” : 1, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_shrieker”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_shrieker”, “freq” : 5, “cost\_multiplier” : 10, “pack\_size”: [1,3]},  
{ “monster” : “mon\_zombie\_spitter”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_spitter”, “freq” : 3, “cost\_multiplier” : 15, “pack\_size”: [2,4]},  
{ “monster” : “mon\_zombie\_electric”, “freq” : 15, “cost\_multiplier” : 6 },  
{ “monster” : “mon\_zombie\_electric”, “freq” : 1, “cost\_multiplier” : 12, “pack\_size”: [1,3]},  
{ “monster” : “mon\_zombie\_necro”, “freq” : 3, “cost\_multiplier” : 25 },  
{ “monster” : “mon\_zombie\_survivor”, “freq” : 1, “cost\_multiplier” : 35, “pack\_size”: [1,2]},  
{ “monster” : “mon\_boomer”, “freq” : 25, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_boomer”, “freq” : 3, “cost\_multiplier” : 15, “pack\_size”: [2,4]},  
{ “monster” : “mon\_zombie\_brute”, “freq” : 15, “cost\_multiplier” : 15 },  
{ “monster” : “mon\_zombie\_brute”, “freq” : 1, “cost\_multiplier” : 30, “pack\_size”: [1,3]},  
{ “monster” : “mon\_zombie\_hulk”, “freq” : 1, “cost\_multiplier” : 50 },  
{ “monster” : “mon\_zombie\_hulk”, “freq” : 1, “cost\_multiplier” : 80, “pack\_size”: [1,2]},  
{ “monster” : “mon\_zombie\_master”, “freq” : 3, “cost\_multiplier” : 30 },  
{ “monster” : “mon\_beekeeper”, “freq” : 1, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_technician”, “freq” : 1, “cost\_multiplier” : 12},  
{ “monster” : “mon\_zombie\_brute\_shocker”, “freq” : 5, “cost\_multiplier” : 40 },  
{ “monster” : “mon\_zombie\_brute\_shocker”, “freq” : 1, “cost\_multiplier” : 60, “pack\_size”: [1,2]},  
{ “monster” : “mon\_zombie\_grappler”, “freq” : 10, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_grappler”, “freq” : 5, “cost\_multiplier” : 20, “pack\_size”: [1,3]},  
{ “monster” : “mon\_zombie\_acidic”, “freq” : 25, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_zombie\_acidic”, “freq” : 5, “cost\_multiplier” : 9, “pack\_size”: [2,5]},  
{ “monster” : “mon\_zombie\_runner”, “freq” : 5, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_zombie\_runner”, “freq” : 20, “cost\_multiplier” : 5, “pack\_size”: [1,4] },  
{ “monster” : “mon\_zombie\_runner”, “freq” : 3, “cost\_multiplier” : 15, “pack\_size”: [4,8] }

```
],
"replace_monster_group" : true,
"new_monster_group_id" : "GROUP_ZOMBIE_MID",
"replacement_time" : 14, "//" : "(replacement_time * difficulty)DAYS *(SEASON_LENGTH / 14)"

```

},

Update for Shady Zom

---

<div class="post-metadata">

### Author: ![Zireael](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/zireael/32/956_2.png) [@Zireael](https://discourse.cataclysmdda.org/u/Zireael)
#### Post date: [December 1, 2015, 8:01pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/4 "2015-12-01T20:01:54Z")

</div>

It’s not crap, it’s amazing!

I’d love to see that wrestler brute in-game.

---

<div class="post-metadata">

### Author: ![Malkeus](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/malkeus/32/12037_2.png) [@Malkeus](https://discourse.cataclysmdda.org/u/Malkeus)
#### Post date: [December 2, 2015, 3:55am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/5 "2015-12-02T03:55:53Z")

</div>

My 3 rl week old survivor just died…These seem very interesting, I’m dropping these into my game now.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 19, 2015, 4:07pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/6 "2015-12-19T16:07:07Z")

</div>

And oc, master upgrade list

{  
“type”:“monstergroup”,  
“name” : “GROUP\_ZOMBIE\_UPGRADE”,  
“default” : “mon\_zombie\_spitter”,  
"//" : “Masters pick from here when upgrading; no dogs, bionics, or profession-types”,  
“monsters” : [  
{ “monster” : “mon\_zombie\_hunter”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_skeleton”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_spitter”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_shady”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_boomer\_huge”, “freq” : 20, “cost\_multiplier” : 6 },  
{ “monster” : “mon\_zombie\_tough”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_screecher”, “freq” : 20, “cost\_multiplier” : 6 },  
{ “monster” : “mon\_zombie\_grappler”, “freq” : 20, “cost\_multiplier” : 7 },  
{ “monster” : “mon\_zombie\_grabber”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_gasbag”, “freq” : 10, “cost\_multiplier”: 5},  
{ “monster” : “mon\_boomer”, “freq” : 10, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_shrieker”, “freq” : 10, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_brute”, “freq” : 10, “cost\_multiplier” : 15 },  
{ “monster” : “mon\_zombie\_corrosive”, “freq” : 10, “cost\_multiplier” : 7 },  
{ “monster” : “mon\_zombie\_smoker”, “freq” : 10, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_necro”, “freq” : 5, “cost\_multiplier” : 25 },  
{ “monster” : “mon\_zombie\_predator”, “freq” : 5, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_biter”, “freq” : 5, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_master”, “freq” : 5, “cost\_multiplier” : 30 },  
{ “monster” : “mon\_zombie\_hollow”, “freq” : 5, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_hulk”, “freq” : 1, “cost\_multiplier” : 50 },  
{ “monster” : “mon\_zombie\_brute\_grappler”, “freq” : 1, “cost\_multiplier” : 40 },  
{ “monster” : “mon\_zombie\_swimmer”, “freq” : 0, “cost\_multiplier” : 5 }  
]  
},

\*how long before ningja zom upgrade o.o

---

<div class="post-metadata">

### Author: ![Malkeus](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/malkeus/32/12037_2.png) [@Malkeus](https://discourse.cataclysmdda.org/u/Malkeus)
#### Post date: [December 21, 2015, 12:17pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/7 "2015-12-21T12:17:22Z")

</div>

[quote=“pisskop, post:6, topic:11019”]And oc, master upgrade list  
…Spoiler clipped…  
\*how long before ningja zom upgrade o.o[/quote]

```
  { "monster" : "mon_zombie_swimmer", "freq" : 0, "cost_multiplier" : 5 },

```

this line needs to have the ‘,’ removed or the game crashes on world load, with no explanation given. I’m enjoying your setting so far, and that grappler is a beast!

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 21, 2015, 12:40pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/8 "2015-12-21T12:40:48Z")

</div>

thanks.

I did have an extra comma at the end. I ended up removing it when I rolled my world but didnt update this :X

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 23, 2015, 9:56pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/9 "2015-12-23T21:56:25Z")

</div>

[Taking the piss out of the First Day](http://www.wiki.cataclysmdda.com/index.php?title=Taking_the_piss_out_of_the_First_Day), a guide to playing for keeps and living longer than 3 days with the power of Preventative Maintainance.

---

<div class="post-metadata">

### Author: ![Malkeus](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/malkeus/32/12037_2.png) [@Malkeus](https://discourse.cataclysmdda.org/u/Malkeus)
#### Post date: [December 24, 2015, 8:19am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/10 "2015-12-24T08:19:58Z")

</div>

Some recent change has broken your monstergroups.json changes. I haven’t figured out what exactly is broken, but I’m working on it. Using your monstergroups causes the game to crash on world load and create character screen. I’ll get back to you if/when I figure it out.

---

<div class="post-metadata">

### Author: ![Malkeus](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/malkeus/32/12037_2.png) [@Malkeus](https://discourse.cataclysmdda.org/u/Malkeus)
#### Post date: [December 24, 2015, 8:40am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/11 "2015-12-24T08:40:55Z")

</div>

shit. somehow or another that damn comma snuck back in. should work as is.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 24, 2015, 8:47am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/12 "2015-12-24T08:47:07Z")

</div>

I just downloaded the newest expi and tried:

![](http://i.imgur.com/GMBhm7P.png)

They tried to give each other big ole Powerhugs \<3. I guess they fixed it?

pedit: 😃

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 31, 2015, 10:21am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/13 "2015-12-31T10:21:42Z")

</div>

> [@pisskop](#):
>
> [Taking the piss out of the First Day](http://www.wiki.cataclysmdda.com/index.php?title=Taking_the_piss_out_of_the_First_Day), a guide to playing for keeps and living longer than 3 days with the power of Preventative Maintainance.

Updated ‘Taking the Piss’. Specific Zombie tactics to come after sleep and New Years Obligatory drinking.

---

<div class="post-metadata">

### Author: ![Coolthulhu](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/coolthulhu/32/2446_2.png) [@Coolthulhu](https://discourse.cataclysmdda.org/u/Coolthulhu)
#### Post date: [December 31, 2015, 11:13am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/14 "2015-12-31T11:13:22Z")

</div>

You can add “labeled links” on the wiki like this: [[link\_location\_here|what is displayed]].  
No need to add a full wiki link there - in fact it’s a bad idea to add a full link, as it will break if wiki address ever changes.

Do you want to keep the article “yours” or are you OK with others correcting it?  
I saw a minor error - aspirin can’t be stacked, it needs to be taken at regular intervals instead.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [December 31, 2015, 4:00pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/15 "2015-12-31T16:00:22Z")

</div>

No please do. I dont mean to bullguard it Im just proud to pour so much into it. A lot of tips were taken from everyone.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [January 24, 2016, 7:33pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/16 "2016-01-24T19:33:44Z")

</div>

Im designing a new path for many of the Monster evos. Thoughts on what would be fair but unforgiving? This involves the monster-upgrade spawns. And may include new types. Swimmer zombies are dumb. And have a lot of debit on them.

My thoughts:

-Fat zombies upgrade according to a distinct ‘fat zombie’ path, while factory-edition Zs use the Master’s upgrades.  
-Due to my tampering with those, Im recieving a skewed proportion of special zoms as the regular zoms that do spawn are doing so in their top-tier forms.

-I want to create a ‘fortified’ version of Zmen. Faster than regular ones or else decaying or skeletal. regular Zs will decay over time into these as well as into some higher forms.  
-I want to add a good percentage chance (40-75%) for Zmen to ‘upgrade’ into Zmen, esentially delaying their evolution as they spawn. I find the idea that all of them evolve silly, honestly.

-While here, I hope to add a variation of tank drones and chicken walkers and secubots. They have either luminescence or Night vison.

= = = = =

{  
“type”:“monstergroup”,  
“name” : “GROUP\_ZOMBIE\_EVO”,  
“default” : “mon\_zombie\_spitter”,  
"//" : “Evolution List. Weaker than the master upgrade list.”,  
“monsters” : [  
{ “monster” : “mon\_zombie”, “freq” : 100, “cost\_multiplier” : 1 },  
{ “monster” : “mon\_zombie\_spitter”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_corrosive”, “freq” : 5, “cost\_multiplier” : 7 },  
{ “monster” : “mon\_zombie\_runner”, “freq” : 50, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_zombie\_hunter”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “decayed zombie”, “freq” : 50, “cost\_multiplier” : 3 },  
{ “monster” : “mon\_skeleton”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_biter”, “freq” : 5, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_shady”, “freq” : 40, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_hollow”, “freq” : 5, “cost\_multiplier” : 10 },  
{ “monster” : “mon\_zombie\_swimmer”, “freq” : 0, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_tough”, “freq” : 30, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_boomer”, “freq” : 15, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_boomer\_huge”, “freq” : 5, “cost\_multiplier” : 6 },  
{ “monster” : “mon\_zombie\_shrieker”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_screecher”, “freq” : 5, “cost\_multiplier” : 6 },  
{ “monster” : “mon\_zombie\_smoker”, “freq” : 20, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_gasbag”, “freq” : 20, “cost\_multiplier”: 5},  
{ “monster” : “mon\_zombie\_grabber”, “freq” : 40, “cost\_multiplier” : 5 },  
{ “monster” : “mon\_zombie\_grappler”, “freq” : 15, “cost\_multiplier” : 7 },  
{ “monster” : “mon\_zombie\_brute”, “freq” : 15, “cost\_multiplier” : 15 },  
{ “monster” : “mon\_zombie\_brute\_grappler”, “freq” : 5, “cost\_multiplier” : 40 },  
{ “monster” : “mon\_zombie\_necro”, “freq” : 10, “cost\_multiplier” : 25 },  
{ “monster” : “mon\_zombie\_master”, “freq” : 10, “cost\_multiplier” : 30 },  
{ “monster” : “mon\_zombie\_hulk”, “freq” : 1, “cost\_multiplier” : 80 }  
]  
},

^^ A rough version of what I want. Ive changed Zmen to Turn into these. I wonder if Zombies that ‘evolve’ into Themselves will evolve again. I cant imagine why they wouldnt . . .

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [January 25, 2016, 5:34pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/17 "2016-01-25T17:34:40Z")

</div>

Well, the lua to replace specificportions of a monster still escape me for now, but Ill keep looking at how to call specific monsters (as opposed to species) and then Im sure I could alter their evo paths and all that from there.

In the meantime a solution does present itself: I could blacklist all the ones I dont want and replace them with the ones I do. The only issue I think may be wrt masters upgrading. Im only interested in adding a few new/improved monsters (like wrestler brute and IR vison tank drone) and altering spawn lists.

* * *

My main problem with evo is that it effects all of them and that this ruins the established spawn ratios of pre-evo and that there is no decay of these critters whose descriptions include ‘decaying’, ‘putrelent’, etc. I would like for masters to no be obsolete after 100 days gameplay.

^^ Pedit: Well no. Masters are coded to be capable of upgrading all doodads around them, not just Greenies.

^^ ppedit: It also seems that masters no longer ‘change’ a zombie. They upgrade them according to their available types. Greenies can now upgrade into whatever they used to mutate into. Makes some sense, really destroys my hopes of keeping masters and passive background evolution seperate.

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [January 25, 2016, 11:42pm UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/18 "2016-01-25T23:42:16Z")

</div>

Wee mod is done! \o/ It is listed under ‘balance’ mods on the third tab of mod selection.

> **[Dropbox - Error](https://www.dropbox.com/s/jvv91i5eyulus3j/PK_Rebalance.zip?dl=0)**
>
> Dropbox is a free service that lets you bring your photos, docs, and videos anywhere and share them easily. Never email yourself a file again!

It should slow down evolution some and allow for more generic zombies to spawn. I learned more about the coding for the monsters, but essentially I got by by adding new monsters for each type I wanted to change. Decayed zombies will turn into skeletons after a time, for instance; Zombies have a chance to turn into 1 of 2 types of vanilla zombies: A stronger version and a weaker one. Both evolve, though the weaker ones evolve faster and into harsher monsters.

Still, hopefully this will emphasize on-the-scene masters and will encourage more surviving and less immersion breaking sillybuggers.111

---

<div class="post-metadata">

### Author: ![pisskop](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/pisskop/32/1327_2.png) [@pisskop](https://discourse.cataclysmdda.org/u/pisskop)
#### Post date: [January 26, 2016, 12:50am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/19 "2016-01-26T00:50:33Z")

</div>

Its a spawn group. All the critters in what passes for our rivers spawn with it. All the zombie sharks, all the hoohah, all the fish. Its in monstergroup.

---

<div class="post-metadata">

### Author: ![Malkeus](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/malkeus/32/12037_2.png) [@Malkeus](https://discourse.cataclysmdda.org/u/Malkeus)
#### Post date: [January 26, 2016, 12:54am UTC](https://discourse.cataclysmdda.org/t/pisskops-crap/11019/20 "2016-01-26T00:54:26Z")

</div>

Dang, I was hoping noone would notice that message. I had match case on in notepad++ and forgot to ignore case in my agrep search…I’m a dumbass.

[Next page](https://discourse.cataclysmdda.org/t/pisskops-crap/11019.md?page=2)
