59 lines
897 B
INI
59 lines
897 B
INI
|
;--------------------------------------------------------------------
|
||
|
;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/
|
||
|
;--------------------------------------------------------------------
|
||
|
;FIX LVL3 BOSS HP
|
||
|
;-----------------
|
||
|
|
||
|
modify:
|
||
|
{
|
||
|
match:
|
||
|
{
|
||
|
"targetname" "Lvl3_Boss_HealthTr"
|
||
|
"classname" "trigger_multiple"
|
||
|
}
|
||
|
replace:
|
||
|
{
|
||
|
"StartDisabled" "1"
|
||
|
"classname" "trigger_once"
|
||
|
}
|
||
|
delete:
|
||
|
{
|
||
|
"wait" "1"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
modify:
|
||
|
{
|
||
|
match:
|
||
|
{
|
||
|
"targetname" "Lvl3_BossPush"
|
||
|
"classname" "trigger_push"
|
||
|
}
|
||
|
insert:
|
||
|
{
|
||
|
"OnStartTouch" "Lvl3_Boss_HealthTr,Enable,,4.90,1"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
;---------------------------
|
||
|
;MAKE CAT A BIT MORE USEFUL
|
||
|
;---------------------------
|
||
|
|
||
|
modify:
|
||
|
{
|
||
|
match:
|
||
|
{
|
||
|
"targetname" "Cat_Timer"
|
||
|
"classname" "logic_timer"
|
||
|
; "RefireTime" "1"
|
||
|
}
|
||
|
delete:
|
||
|
{
|
||
|
"OnTimer" "Boss_Health,Subtract,4,0,-1"
|
||
|
}
|
||
|
insert:
|
||
|
{
|
||
|
"OnTimer" "Boss_Health,Subtract,50,0,-1"
|
||
|
}
|
||
|
}
|