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.
AM2Rogue/Export_Code/gml_Object_oEndingMonsterEg...

37 lines
892 B

if (sprite_index == sMonsterEggCrush && image_index == 9)
PlaySoundMono(sndEggCrush)
if (sprite_index == sMonsterEggCrush && image_index == 12)
PlaySoundMono(sndHornoadLand)
if (sprite_index == sMonsterEggCrush && image_index >= 23)
{
sprite_index = sMonsterEggIdle
image_index = 0
image_speed = 0.11666666666666667
}
if (xBite == 1)
{
sprite_index = sMonsterEggBite
image_speed = 0.1
image_index = 0
xBite = 0
}
if (sprite_index == sMonsterEggBite && image_index >= 5)
{
sprite_index = sMonsterEggIdle
image_index = 0
image_speed = 0.11666666666666667
}
if (xTwitch == 1)
{
sprite_index = sMonsterEggTwitch
image_speed = 0.11666666666666667
image_index = 0
xTwitch = 0
}
if (sprite_index == sMonsterEggTwitch && image_index >= 8)
{
sprite_index = sMonsterEggIdle
image_index = 0
image_speed = 0.11666666666666667
}