You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
320 B
17 lines
320 B
speed = 0
|
|
met = instance_create(x, y, oMAlpha)
|
|
met.facing = 1
|
|
met.myid = 0
|
|
met.spriteset = 0
|
|
with (met)
|
|
{
|
|
set_monster_vars(myid)
|
|
shell = instance_create(x, y, oMAlphaShell)
|
|
shell.damage = damage
|
|
shell.hpush = 5
|
|
shell.vpush = -3
|
|
}
|
|
sfx_play(sndMAlphaIntro)
|
|
global.monstersalive += 1
|
|
instance_destroy()
|