Skip to content

Commit

Permalink
Add deadcore stripper
Browse files Browse the repository at this point in the history
  • Loading branch information
Vauff committed Oct 23, 2024
1 parent b70c82b commit c71c886
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
20 changes: 20 additions & 0 deletions stripper/ze_deadcore/3550#entityLumpName.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Make lasers no longer slow zombies (v1_3 did not have this slow so it didn't make sense having this)
// This was already part of porters CS:GO k3 stripper, not sure why this port excluded it
"modify":
{
"match":
{
"targetname": "/escape_laser_hurt/"
},
"delete":
{
"io":
[
{
"inputname": "KeyValue"
}
]
}
}
}
25 changes: 25 additions & 0 deletions stripper/ze_deadcore/default_ents.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
// Why are these here? Not part of original map, and significantly changes spawn defence difficulty
"modify":
{
"match":
{
"classname": "logic_auto"
},
"delete":
{
"io":
[
{
"overrideparam": "mp_freezetime 0"
},
{
"overrideparam": "zr_infect_spawn_time_min 13"
},
{
"overrideparam": "zr_infect_spawn_time_max 13"
}
]
}
}
}

0 comments on commit c71c886

Please sign in to comment.