|
1
|
scr_monstersetupscr_monstersetup
myself = 0;
if (global.monster[1] == 1)
{
myself = 2;
global.monster[2] = 1;
}
if (global.monster[0] == 1 && myself != 2)
{
myself = 1;
global.monster[1] = 1;
}
if (global.monster[0] == 0)
{
myself = 0;
global.monster[0] = 1;
}
if (global.monstertype[myself] == 1TestFroggit)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 23;
global.monsterhp[myself] = 23;
global.monsteratk[myself] = 4;
global.monsterdef[myself] = 1;
global.xpreward[myself] = 2;
global.goldreward[myself] = 2;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 2Dummy)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 15;
global.monsterhp[myself] = 15;
global.monsteratk[myself] = 0;
global.monsterdef[myself] = -5;
global.xpreward[myself] = 0;
global.goldreward[myself] = 0;
global.itemrewardid = 0;
global.itemrewardchance = 0;
}
if (global.monstertype[myself] == 3Froggit)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 20;
global.monsterhp[myself] = 20;
global.monsteratk[myself] = 4;
global.monsterdef[myself] = 1;
global.xpreward[myself] = 10;
global.goldreward[myself] = 20;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 4Froggit)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 30;
global.monsterhp[myself] = 30;
global.monsteratk[myself] = 4;
global.monsterdef[myself] = 4;
global.xpreward[myself] = 3;
global.goldreward[myself] = 2;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 5Whimsun)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 10;
global.monsterhp[myself] = 10;
global.monsteratk[myself] = 4;
global.monsterdef[myself] = 0;
global.xpreward[myself] = 2;
global.goldreward[myself] = 2;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 6Moldsmal)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 50;
global.monsterhp[myself] = 50;
global.monsteratk[myself] = 4;
global.monsterdef[myself] = 0;
global.xpreward[myself] = 3;
global.goldreward[myself] = 3;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 7Migosp)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 40;
global.monsterhp[myself] = 40;
global.monsteratk[myself] = 5;
global.monsterdef[myself] = 4;
global.xpreward[myself] = 5;
global.goldreward[myself] = 4;
global.itemrewardid = 1;
global.itemrewardchance = 50;
}
if (global.monstertype[myself] == 8Vegetoid)
... ();
|
|
2
|
image_speed = 0;
|
|
3
|
part1 = 275;
|
|
4
|
alarm[10]
|
|
5
|
global.faceemotion = 10;
|
|
6
|
mypart1 = instance_create(x, y, part1);
|
|
7
|
mypart1.depth = 15;
|
|
8
|
mypart1.noanim = 1;
|
|
9
|
mypart1.spearalpha = 0;
|
|
10
|
mypart1.goof = 0;
|
|
11
|
with (mypart1)
|
|
12
|
pause = 0;
|
|
13
|
with (obj_battlebg)
|
|
14
|
instance_destroy();
|
|
15
|
alarm[9] = 8; gml_Object_obj_ripoff_undyne_Alarm_9.gml
mypart1.parent = global.monsterinstance[myself];
|
|
16
|
hurtanim = 0;
|
|
17
|
hurtsound = snd_vulkinhurt;
|
|
18
|
talked = 0;
|
|
19
|
whatiheard = -1;
|
|
20
|
attacked = 0;
|
|
21
|
killed = 0;
|
|
22
|
global.heard = 0;
|
|
23
|
takedamage = 0;
|
|
24
|
mercymod = -999999;
|
|
25
|
sha = 0;
|
|
26
|
shb = 0;
|
|
27
|
lesson = 15;
|
|
28
|
if (obj_heart.sprite_index == spr_heart)
|
|
29
|
{
|
|
30
|
obj_heart.sprite_index = spr_heartgreen;
|
|
31
|
obj_heart.movement = 3;
|
|
32
|
green = 0;
|
|
33
|
}
|
|
34
|
darkify = 0;
|
|
35
|
greenlock = 0;
|
|
36
|
rating = 12;
|
|
37
|
hitno = 0;
|
|
38
|
berserk = 0;
|
|
39
|
turns = 0;
|
|
40
|
mercyno = 0;
|
|
41
|
talkt = 0;
|
|
42
|
saved = 0;
|
|
43
|
st = instance_create(x + 20, y - 30, obj_strangetangle);
|
|
44
|
with (st)
|
|
45
|
depth = 14;
|
|
46
|
ht = 200;
|
|
47
|
wd = 100;
|