Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/text/Daycare.asm
1270 views
1
_DaycareGentlemanIntroText::
2
text "I run a DAYCARE."
3
line "Would you like me"
4
cont "to raise one of"
5
cont "your #MON?"
6
done
7
8
_DaycareGentlemanWhichMonText::
9
text "Which #MON"
10
line "should I raise?"
11
prompt
12
13
_DaycareGentlemanWillLookAfterMonText::
14
text "Fine, I'll look"
15
line "after @"
16
text_ram wNameBuffer
17
text_start
18
cont "for a while."
19
prompt
20
21
_DaycareGentlemanComeSeeMeInAWhileText::
22
text "Come see me in"
23
line "a while."
24
done
25
26
_DaycareGentlemanMonHasGrownText::
27
text "Your @"
28
text_ram wNameBuffer
29
text_start
30
line "has grown a lot!"
31
32
para "By level, it's"
33
line "grown by @"
34
text_decimal wDayCareNumLevelsGrown, 1, 3
35
text "!"
36
37
para "Aren't I great?"
38
prompt
39
40
_DaycareGentlemanOweMoneyText::
41
text "You owe me ¥@"
42
text_bcd wDayCareTotalCost, 2 | LEADING_ZEROES | LEFT_ALIGN
43
text_start
44
line "for the return"
45
cont "of this #MON."
46
done
47
48
_DaycareGentlemanGotMonBackText::
49
text "<PLAYER> got"
50
line "@"
51
text_ram wDayCareMonName
52
text " back!"
53
done
54
55
_DaycareGentlemanMonNeedsMoreTimeText::
56
text "Back already?"
57
line "Your @"
58
text_ram wNameBuffer
59
text_start
60
cont "needs some more"
61
cont "time with me."
62
prompt
63
64