summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c
diff options
context:
space:
mode:
authorJan <>2015-02-02 17:53:07 +0100
committerJan <_>2015-07-10 17:48:38 +0200
commit40fb3e5d61c44886b06d839a35adb0c11a5f918f (patch)
treef33632c8b41f1c3e955a83cd156266a73a4ae9c3 /TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c
parentf5a80c493dcefbc8f45987b8fd454d974f739cf7 (diff)
downloadtempelschubsen-40fb3e5d61c44886b06d839a35adb0c11a5f918f.tar.gz
tempelschubsen-40fb3e5d61c44886b06d839a35adb0c11a5f918f.zip
CliffPushR2.c4s
Diffstat (limited to 'TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c')
-rw-r--r--TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c b/TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c
deleted file mode 100644
index a040037..0000000
--- a/TemplePushing.c4s/CliffPushing.c4d/Extra.c4d/OGoblet.c4d/Script.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/*-- Kelch --*/
-
-#strict
-
-local iTimer;
-
-func Initialize()
- {
- return(1);
- }
-
-func FillCheck()
- {
- if(!Contained())
- if(Inside(GetR(), 20, 340))
- Hit();
- if(!(iTimer%5))
- {
- var iX = Sin(GetR(), RandomX(-4,4) );
- var iY = -Cos(GetR(), RandomX(-4,1) );
- if(!Contained())
- CreateParticle("NoGravSpark", iX, iY,0,0,RandomX(25, 55),RGBa(255,255,0,120));
- }
- iTimer++;
- if(iTimer>=10)
- {
- if(GetOCF(Contained()) & OCF_CrewMember())
- DoEnergy(+15, Contained());
- iTimer=0;
- }
- return(1);
- }
-
-func Hit()
- {
- if(!GBackLiquid())
- {
- for(var i=15; i>0; i--)
- {
- var iX=Sin(GetR(), RandomX(4,8)), iY=-Cos(GetR(), RandomX(4,8)), iXDir=GetWind()*30/100, iYDir=-Cos(GetR()+RandomX(-2,2), Random(7));
- InsertMaterial(Material("Water"), iX, iY, iXDir, iYDir);
- }
- SetEmpty();
- }
- }
-
-private func SetEmpty()
- {
- ChangeDef(EGBL);
- return(1);
- }
-
-// Mit Kelch: Aufwertung zum Magus
-public func GetRevaluationCombo() { return(MAGE); }