-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMagicalCreature.java
More file actions
78 lines (63 loc) · 1.77 KB
/
MagicalCreature.java
File metadata and controls
78 lines (63 loc) · 1.77 KB
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
public interface MagicalCreature {
void castSpell();
void fly();
void disappear();
}
class Dragon implements MagicalCreature {
@Override
public void castSpell() {
System.out.println("The Dragon is casting a fire breath spell!");
}
@Override
public void fly() {
System.out.println("The Dragon is flying majestically in the sky!");
}
@Override
public void disappear() {
System.out.println("The Dragon is disappearing into a cloud of smoke!");
}
}
class Unicorn implements MagicalCreature {
@Override
public void castSpell() {
System.out.println("The Unicorn is casting a healing spell!");
}
@Override
public void fly() {
System.out.println("The Unicorn is flying over the rainbow!");
}
@Override
public void disappear() {
System.out.println("The Unicorn is disappearing into a mist!");
}
}
class Phoenix implements MagicalCreature {
@Override
public void castSpell() {
System.out.println("The Phoenix is casting a rebirth spell!");
}
@Override
public void fly() {
System.out.println("The Phoenix is soaring high with fiery wings!");
}
@Override
public void disappear() {
System.out.println("The Phoenix disappears in a burst of flames!");
}
}
class MagicalAdventure {
public static void main(String[] args) {
MagicalCreature dragon = new Dragon();
MagicalCreature unicorn = new Unicorn();
MagicalCreature phoenix = new Phoenix();
dragon.castSpell();
dragon.fly();
dragon.disappear();
unicorn.castSpell();
unicorn.fly();
unicorn.disappear();
phoenix.castSpell();
phoenix.fly();
phoenix.disappear();
}
}