forked from Frimkron/mud-pi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnpcs.py
37 lines (37 loc) · 1.1 KB
/
npcs.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
npcs = {
"store template": {
"quote": "I say this when you interact with me!",
"type": "shop", # i am a shop
"items": {"item for sale": 500}, # second param is cost, in credits
},
"dialogue template": {
"quote": "This is what I say!",
"type": "dialogue", # i am a talker
"quote2": "I say this second!",
},
"melon shop 1": {
"quote": "Yummy Watermelon for Sale!",
"type": "shop",
"items": {"watermelon": "melon ticket"},
},
"arms shop 1": {
"quote": "What can I do for ya?",
"type": "shop",
"items": {"plasma dagger": 35},
},
"jordan harrison": {
"quote": "Howdy partner!",
"type": "dialogue",
"quote2": "How are you doing?",
},
"medshop 1": {
"quote": "*cough* *cough* 'I've got whatcha lookin for' *cough*",
"type": "shop",
"items": {"speedstim": 10},
},
"foodmart 1": {
"quote": "Welcome to FoodMart, your ONLY source for food on _planetName_",
"type": "shop",
"items": {"ration": 5},
},
}