summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/System.c4g/Clonk.c
diff options
context:
space:
mode:
authorMittendrein Markus <maxmitti@gmx.net>2016-02-08 22:39:00 +0100
committerMittendrein Markus <maxmitti@gmx.net>2016-02-08 23:48:42 +0100
commit4605b884b226dc244bbfe19481a45e5019f41df8 (patch)
tree0e41427c5d68667626cdb1eb0b4d299f04176a7a /TemplePushing.c4s/System.c4g/Clonk.c
parentd6816e95913e6705b03ea205ba3c10d0101692d6 (diff)
downloadtempelschubsen-4605b884b226dc244bbfe19481a45e5019f41df8.tar.gz
tempelschubsen-4605b884b226dc244bbfe19481a45e5019f41df8.zip
Explicitly set the rest of the physicals
Diffstat (limited to 'TemplePushing.c4s/System.c4g/Clonk.c')
-rw-r--r--TemplePushing.c4s/System.c4g/Clonk.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/TemplePushing.c4s/System.c4g/Clonk.c b/TemplePushing.c4s/System.c4g/Clonk.c
index 0c3264c..546f74c 100644
--- a/TemplePushing.c4s/System.c4g/Clonk.c
+++ b/TemplePushing.c4s/System.c4g/Clonk.c
@@ -10,8 +10,13 @@ local removeOnDeath;
protected func Initialize()
{
AddEffect("CheckStuck2", this, 20, 1, this);
+ SetPhysical("Fight", 75000, PHYS_Temporary, this);
SetPhysical("Scale", 60000, PHYS_Temporary, this);
+ SetPhysical("Hangle", 60000, PHYS_Temporary, this);
+ SetPhysical("Energy", 100000, PHYS_Temporary, this);
SetPhysical("CanScale", 1, PHYS_Temporary, this);
+ SetPhysical("CanHangle", 1, PHYS_Temporary, this);
+ DoEnergy(100, this);
return _inherited(...);
}