diff options
Diffstat (limited to 'TemplePushing.c4s/System.c4g/EmptyGoblet.c')
| -rw-r--r-- | TemplePushing.c4s/System.c4g/EmptyGoblet.c | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/TemplePushing.c4s/System.c4g/EmptyGoblet.c b/TemplePushing.c4s/System.c4g/EmptyGoblet.c index 7c48007..655a1b3 100644 --- a/TemplePushing.c4s/System.c4g/EmptyGoblet.c +++ b/TemplePushing.c4s/System.c4g/EmptyGoblet.c @@ -5,9 +5,25 @@ func Activate(pClonk) { [$Shot$|Image=GNPW] Sound("Blast2"); - Sound("Crystal3"); - Exit(this(),-20+40*GetDir(pClonk)); - SetXDir(-100+200*GetDir(pClonk)); + Exit(this(),-10+20*GetDir(pClonk)); + SetXDir(-80+160*GetDir(pClonk)); SetYDir(-10); return(1); -}
\ No newline at end of file +} + +func Hit() +{ + if (Random(2)) return(_inherited()); + else + SetYDir(-20); + Sound("BOING"); + return(1); +} +/*-- Neues Script --*/ + +#strict + +func Initialize() { + + return(1); +} |
