-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMonster.java
85 lines (67 loc) · 1004 Bytes
/
Monster.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import java.awt.*;
import java.applet.*;
public class Monster extends Character
{
private int stepy;
private int id;
private int hv,vv;
private int hcount,vcount;
// default constructor, sets all to zero
public Monster(int id, int x, int y, int w, int h)
{
super(id,x,y,w,h);
hv=1;
vv=1;
}
public void changeStepY(int y)
{
stepy += y;
}
//returns the index number of the needed image from the ArrayList
// at location 1 in ArrayList of images
public int show()
{
return id;
}
public String toString()
{
return x + " " + y;
}
public void move()
{
changeY(vv);
changeX(hv);
}
public void setHV(int h)
{
hv=h;
}
public void setVV(int v)
{
vv=v;
}
public int getHV()
{
return hv;
}
public int getVV()
{
return vv;
}
public void setVcount(int v)
{
vcount=v;
}
public void setHcount(int h)
{
hcount=h;
}
public int getVcount()
{
return vcount;
}
public int getHcount()
{
return hcount;
}
}