blob: 40ad2ac39697acc8e715d7954125f80932931947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-- Großer Kristall --*/
#strict 2
protected func Initialize()
{
var rand=1;
if(Random(2) == 1)rand=-1;
SetObjDrawTransform(1000*rand,0,0,0,1000);
}
protected func Activity()
{
var cnt;
cnt=5;
while(cnt--) CreateParticle("MaterialSpark", GetX(this)-GetX()+Random(13)-6, GetY(this)-GetY()+RandomX(11),0,-1-Random(2),40,0x1f7fff);
}
public func Activate()
{
return SetAction("Active");
}
|