-
Notifications
You must be signed in to change notification settings - Fork 0
/
MrAgnew.py
39 lines (23 loc) · 1.27 KB
/
MrAgnew.py
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
## Mr. Agnew File
import pygame
from NPC_Base import MrAgnew
class MrAgnewF1(MrAgnew):
def __init__(self, screen, x, y, img):
MrAgnew.__init__(self, screen, x, y, img)
self.dialogueList = ["Hello!",
"Welcome to the Tower of the Sorcerer.",
"You may call me Mr. Agnew.",
"!What are those!?",
"Those bones?",
"...",
"People who have failed in the past.",
"I hope you won't become one of them...",
"!Anything I need to know before starting my adventure?",
"You see that yellow door? You need a yellow key to open it.",
"Each type of door has a corresponding type of key...",
"Don't worry if you feel there's too much to learn.",
"I will guide you throughout your adventure.",
"!Thank you!",
"Best of luck!"]
self.dialogueList2 = ["Best of luck!"]
self.icon = self.image