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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
|
.section .rodata
@ Start of Personality Questions - 80F0054
@ Question 1, Category 1 (Hardy)
HardyQuest1Points:
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
HardyQuest1Answers:
.4byte HardyQuest1_StudyHard
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest1_LastSecond
.byte 0x01, 0x00, 0x00, 0x00
.4byte HardyQuest1_Ignore
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
HardyQuest1_Ignore:
.string "Ignore it and play.\0"
HardyQuest1_LastSecond:
.string "At the last second.\0"
HardyQuest1_StudyHard:
.string "Study hard.\0"
.global HardyQuest1
HardyQuest1:
.4byte HardyQuest1Question
.4byte HardyQuest1Answers
.4byte HardyQuest1Points
HardyQuest1Question:
.string "A test is coming up.\n"
.string "How do you study for it?\0"
.align 2,0
@ Question 2, Category 1 (Hardy)
HardyQuest2Points:
.byte 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
HardyQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest2_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
HardyQuest2_No:
.string "No. \0"
.align 2,0
HardyQuest2_Yes:
.string "Yes.\0"
.align 2,0
.global HardyQuest2
HardyQuest2:
.4byte HardyQuest2Question
.4byte HardyQuest2Answers
.4byte HardyQuest2Points
HardyQuest2Question:
.string "Can you focus on something you like?\0"
.align 2,0
@ Question 3, Category 1 (Hardy)
HardyQuest3Points:
.byte 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
HardyQuest3Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
HardyQuest3_No:
.string "No.\0"
.global HardyQuest3
HardyQuest3:
.4byte HardyQuest3Question
.4byte HardyQuest3Answers
.4byte HardyQuest3Points
HardyQuest3Question:
.string "When the going gets tough{COMMA} do you get\n"
.string "going?\0"
.align 2,0
@ Question 4, Category 1 (Hardy)
HardyQuest4Points:
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
HardyQuest4Answers:
.4byte HardyQuest4_Full
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest4_Half
.byte 0x01, 0x00, 0x00, 0x00
.4byte HardyQuest4_Little
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
HardyQuest4_Little:
.string "A little.\0"
.align 2,0
HardyQuest4_Half:
.string "Half.\0"
.align 2,0
HardyQuest4_Full:
.string "Full.\0"
.align 2,0
.global HardyQuest4
HardyQuest4:
.4byte HardyQuest4Question
.4byte HardyQuest4Answers
.4byte HardyQuest4Points
HardyQuest4Question:
.string "There is a bucket. If you put\n"
.string "water in it{COMMA} how high will you fill it?\0"
.align 2,0
@ Question 1, Category 2 (Docile)
DocileQuest1Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
DocileQuest1Answers:
.4byte DocileQuest1_Big
.byte 0x00, 0x00, 0x00, 0x00
.4byte DocileQuest1_Small
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
DocileQuest1_Small:
.string "Small box.\0"
.align 2,0
DocileQuest1_Big:
.string "Big box.\0"
.align 2,0
.global DocileQuest1
DocileQuest1:
.4byte DocileQuest1Question
.4byte DocileQuest1Answers
.4byte DocileQuest1Points
DocileQuest1Question:
.string "You are offered a choice of two gifts.\n"
.string "Which one will you take?\0"
.align 2,0
@ Question 2, Category 2 (Docile)
DocileQuest2Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
DocileQuest2Answers:
.4byte DocileQuest2_Window
.byte 0x00, 0x00, 0x00, 0x00
.4byte DocileQuest2_Sniff
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
DocileQuest2_Sniff:
.string "Take a sniff first.\0"
.align 2,0
DocileQuest2_Window:
.string "Open a window right away.\0"
.align 2,0
.global DocileQuest2
DocileQuest2:
.4byte DocileQuest2Question
.4byte DocileQuest2Answers
.4byte DocileQuest2Points
DocileQuest2Question:
.string "You broke a rotten egg in your room!\n"
.string "What will you do?\0"
.align 2,0
@ Question 3, Category 2 (Docile)
DocileQuest3Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
DocileQuest3Answers:
.4byte DocileQuest3_Regular
.byte 0x00, 0x00, 0x00, 0x00
.4byte DocileQuest3_Joke
.byte 0x01, 0x00, 0x00, 0x00
.4byte DocileQuest3_Cool
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
DocileQuest3_Cool:
.string "Say thanks{COMMA} but be cool.\0"
.align 2,0
DocileQuest3_Joke:
.string "Say thanks with a joke.\0"
.align 2,0
DocileQuest3_Regular:
.string "Say thank you regularly.\0"
.align 2,0
.global DocileQuest3
DocileQuest3:
.4byte DocileQuest3Question
.4byte DocileQuest3Answers
.4byte DocileQuest3Points
DocileQuest3Question:
.string "A friend brought over something you{APOSTROPHE}d\n"
.string "forgotten.{WAIT_PRESS}\n"
.string "How do you thank your friend?\0"
.align 2,0
@ Question 4, Category 2 (Docile)
DocileQuest4Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
DocileQuest4Answers:
.4byte DocileQuest4_Police
.byte 0x00, 0x00, 0x00, 0x00
.4byte DocileQuest4_Yay
.byte 0x01, 0x00, 0x00, 0x00
.4byte DocileQuest4_Watching
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
DocileQuest4_Watching:
.string "Is anyone watching...?\0"
.align 2,0
DocileQuest4_Yay:
.string "Yay! Yay!\0"
.align 2,0
DocileQuest4_Police:
.string "Turn it in to the police!\0"
.align 2,0
.global DocileQuest4
DocileQuest4:
.4byte DocileQuest4Question
.4byte DocileQuest4Answers
.4byte DocileQuest4Points
DocileQuest4Question:
.string "There is a wallet at the side of a road.\0"
.align 2,0
@ Question 1, Category 3 (Brave)
BraveQuest1Points:
.byte 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
BraveQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global BraveQuest1
BraveQuest1:
.4byte BraveQuest1Question
.4byte BraveQuest1Answers
.4byte BraveQuest1Points
BraveQuest1Question:
.string "You{APOSTROPHE}re going bungee jumping for the first\n"
.string "time.{EXTRA_MSG}Since it{APOSTROPHE}s scary{COMMA} you decide to test the\n"
.string "jump with a doll...{WAIT_PRESS}\n"
.string "And the bungee cord snaps!{EXTRA_MSG}"
.string "Will you still try to make a jump anyway?\0"
.align 2,0
@ Question 2, Category 3 (Brave)
BraveQuest2APoints:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
BraveQuest2AAnswers:
.4byte BraveQuest2A_Fight
.byte 0x63, 0x00, 0x00, 0x00
.4byte BraveQuest2A_Run
.byte 0x01, 0x00, 0x00, 0x00
.4byte BraveQuest2A_Ignore
.byte 0x02, 0x00, 0x00, 0x0
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
BraveQuest2A_Ignore:
.string "Ignore it.\0"
.align 2,0
BraveQuest2A_Run:
.string "Run.\0"
.align 2,0
BraveQuest2A_Fight:
.string "Fight.\0"
.align 2,0
.global BraveQuest2A
BraveQuest2A:
.4byte BraveQuest2AQuestion
.4byte BraveQuest2AAnswers
.4byte BraveQuest2APoints
BraveQuest2AQuestion:
.string "There is an alien invasion!\n"
.string "What will you do?\0"
.align 2,0
BraveQuest2BPoints:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
BraveQuest2BAnswers:
.4byte BraveQuest2B_Rule
.byte 0x00, 0x00, 0x00, 0x00
.4byte BraveQuest2B_Refuse
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
BraveQuest2B_Refuse:
.string "Refuse.\0"
.align 2,0
BraveQuest2B_Rule:
.string "Rule with the aliens.\0"
.align 2,0
.global BraveQuest2B
BraveQuest2B:
.4byte BraveQuest2BQuestion
.4byte BraveQuest2BAnswers
.4byte BraveQuest2BPoints
BraveQuest2BQuestion:
.string "You valiantly fight the aliens...{WAIT_PRESS}\n"
.string "But{COMMA} you are defeated...{EXTRA_MSG}An alien says to you...{EXTRA_MSG}{QUOTE_START}YOU HAVE IMPRESSED US.\n"
.string "IT WAS A PLEASURE TO SEE.{EXTRA_MSG}JOIN US{COMMA} AND TOGETHER WE SHALL\n"
.string "RULE THE WORLD.{QUOTE_END}{WAIT_PRESS}\n"
.string "What will you do?\0"
.align 2,0
@ Question 3, Category 3 (Brave)
BraveQuest3Points:
.byte 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
BraveQuest3Answers:
.4byte BraveQuest3_Yank
.byte 0x00, 0x00, 0x00, 0x00
.4byte BraveQuest3_Scream
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
BraveQuest3_Scream:
.string "Scream in unison.\0"
.align 2,0
BraveQuest3_Yank:
.string "Yank open the door.\0"
.align 2,0
.global BraveQuest3
BraveQuest3:
.4byte BraveQuest3Question
.4byte BraveQuest3Answers
.4byte BraveQuest3Points
BraveQuest3Question:
.string "There is a scream from behind a door!{WAIT_PRESS}\n"
.string "How will you react?\0"
.align 2,0
@ Question 4, Category 3 (Brave)
BraveQuest4Points:
.byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
BraveQuest4Answers:
.4byte BraveQuest4_Hesitation
.byte 0x00, 0x00, 0x00, 0x00
.4byte BraveQuest4_Scared
.byte 0x01, 0x00, 0x00, 0x00
.4byte BraveQuest4_Police
.byte 0x02, 0x00, 0x00, 0x00
.4byte BraveQuest4_Nothing
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
BraveQuest4_Nothing:
.string "Do nothing out of fear.\0"
.align 2,0
BraveQuest4_Police:
.string "Call the police.\0"
.align 2,0
BraveQuest4_Scared:
.string "Help{COMMA} even if scared.\0"
.align 2,0
BraveQuest4_Hesitation:
.string "Help without hesitation.\0"
.align 2,0
.global BraveQuest4
BraveQuest4:
.4byte BraveQuest4Question
.4byte BraveQuest4Answers
.4byte BraveQuest4Points
BraveQuest4Question:
.string "A delinquent is hassling a girl on\n"
.string "a busy city street!{WAIT_PRESS}\n"
.string "What will you do?\0"
.align 2,0
@ Question 1, Category 4 (Jolly)
JollyQuest1Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
JollyQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global JollyQuest1
JollyQuest1:
.4byte JollyQuest1Question
.4byte JollyQuest1Answers
.4byte JollyQuest1Points
@ Question 2, Category 4 (Jolly)
JollyQuest1Question:
.string "Are you a cheerful personality?\0"
.align 2,0
JollyQuest2Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
JollyQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global JollyQuest2
JollyQuest2:
.4byte JollyQuest2Question
.4byte JollyQuest2Answers
.4byte JollyQuest2Points
JollyQuest2Question:
.string "Do you like to noisily enjoy yourself\n"
.string "with others?\0"
.align 2,0
@ Question 3, Category 4 (Jolly)
JollyQuest3Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
JollyQuest3Answers:
.4byte JollyQuest3_Beach
.byte 0x00, 0x00, 0x00, 0x00
.4byte JollyQuest3_Spas
.byte 0x01, 0x00, 0x00, 0x00
.4byte JollyQuest3_Anywhere
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
JollyQuest3_Anywhere:
.string "Anywhere.\0"
.align 2,0
JollyQuest3_Spas:
.string "Spas.\0"
.align 2,0
JollyQuest3_Beach:
.string "The beach!\0"
.align 2,0
.global JollyQuest3
JollyQuest3:
.4byte JollyQuest3Question
.4byte JollyQuest3Answers
.4byte JollyQuest3Points
JollyQuest3Question:
.string "It{APOSTROPHE}s the summer holidays!\n"
.string "Where would you like to go?\0"
.align 2,0
@ Question 4, Category 4 (Jolly)
JollyQuest4Points:
.byte 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
JollyQuest4Answers:
.4byte JollyQuest4_Funny
.byte 0x00, 0x00, 0x00, 0x00
.4byte JollyQuest4_Again
.byte 0x01, 0x00, 0x00, 0x00
.4byte JollyQuest4_Go
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
JollyQuest4_Go:
.string "Right... Well{COMMA} I gotta go.\0"
.align 2,0
JollyQuest4_Again:
.string "Um... Could you say that again?\0"
.align 2,0
JollyQuest4_Funny:
.string "Haha! Yes. Very funny!\0"
.align 2,0
.global JollyQuest4
JollyQuest4:
.4byte JollyQuest4Question
.4byte JollyQuest4Answers
.4byte JollyQuest4Points
JollyQuest4Question:
.string "A foreign person has started up a\n"
.string "conversation with you.{EXTRA_MSG}"
.string "To be honest{COMMA} you don{APOSTROPHE}t have a clue what\n"
.string "this fellow is saying.{WAIT_PRESS}\n"
.string "How do you reply?\0"
.align 2,0
@ Question 1, Category 5 (Impish)
ImpishQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
ImpishQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global ImpishQuest1
ImpishQuest1:
.4byte ImpishQuest1Question
.4byte ImpishQuest1Answers
.4byte ImpishQuest1Points
ImpishQuest1Question:
.string "Have you ever made a pitfall trap?\0"
.align 2,0
@ Question 2, Category 5 (Impish)
ImpishQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
ImpishQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global ImpishQuest2
ImpishQuest2:
.4byte ImpishQuest2Question
.4byte ImpishQuest2Answers
.4byte ImpishQuest2Points
ImpishQuest2Question:
.string "Do you like pranks?\0"
.align 2,0
@ Question 3, Category 5 (Impish)
ImpishQuest3Points:
.byte 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
ImpishQuest3Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global ImpishQuest3
ImpishQuest3:
.4byte ImpishQuest3Question
.4byte ImpishQuest3Answers
.4byte ImpishQuest3Points
ImpishQuest3Question:
.string "Are there many things that you would like\nto do?\0"
.align 2,0
@ Question 4, Category 5 (Impish)
ImpishQuest4Points:
.byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
ImpishQuest4Answers:
.4byte ImpishQuest4_Face
.byte 0x00, 0x00, 0x00, 0x00
.4byte ImpishQuest4_Caution
.byte 0x01, 0x00, 0x00, 0x00
.4byte ImpishQuest4_Heckle
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
ImpishQuest4_Heckle:
.string "Heckle the bully from behind.\0"
.align 2,0
ImpishQuest4_Caution:
.string "Caution the bully from afar.\0"
.align 2,0
ImpishQuest4_Face:
.string "Face up to the bully.\0"
.align 2,0
.global ImpishQuest4
ImpishQuest4:
.4byte ImpishQuest4Question
.4byte ImpishQuest4Answers
.4byte ImpishQuest4Points
ImpishQuest4Question:
.string "Your friend is being bullied!\n"
.string "What do you do?\0"
.align 2,0
@ Question 1, Category 6 (Naive)
NaiveQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
NaiveQuest1Answers:
.4byte NaiveQuest1_Love
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest4_Little
.byte 0x01, 0x00, 0x00, 0x00
.4byte NaiveQuest1_Spare
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
NaiveQuest1_Spare:
.string "Spare me.\0"
.align 2,0
NaiveQuest1_Love:
.string "Love them!\0"
.align 2,0
.global NaiveQuest1
NaiveQuest1:
.4byte NaiveQuest1Question
.4byte NaiveQuest1Answers
.4byte NaiveQuest1Points
NaiveQuest1Question:
.string "Do you like groan-inducing puns?\0"
.align 2,0
@ Question 2, Category 6 (Naive)
.global NaiveQuest2Points
NaiveQuest2Points:
.byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
.global NaiveQuest2Answers
NaiveQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global NaiveQuest2
NaiveQuest2:
.4byte NaiveQuest2Question
.4byte NaiveQuest2Answers
.4byte NaiveQuest2Points
.global NaiveQuest2Question
NaiveQuest2Question:
.string "Do you tend to laugh a lot?\0"
.align 2,0
@ Question 3, Category 6 (Naive)
.global NaiveQuest3Points
NaiveQuest3Points:
.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global NaiveQuest3Answers
NaiveQuest3Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global NaiveQuest3
NaiveQuest3:
.4byte NaiveQuest3Question
.4byte NaiveQuest3Answers
.4byte NaiveQuest3Points
.global NaiveQuest3Question
NaiveQuest3Question:
.string "Do others often call you childish?\0"
.align 2,0
@ Question 4, Category 6 (Naive)
.global NaiveQuest4Points
NaiveQuest4Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global NaiveQuest4Answers
NaiveQuest4Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global NaiveQuest4
NaiveQuest4:
.4byte NaiveQuest4Question
.4byte NaiveQuest4Answers
.4byte NaiveQuest4Points
.global NaiveQuest4Question
NaiveQuest4Question:
.string "Do you like to imagine things for your\n"
.string "amusement?\0"
.align 2,0
@ Question 1, Category 7 (Timid)
.global TimidQuest1Points
TimidQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x02, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global TimidQuest1Answers
TimidQuest1Answers:
.4byte TimidQuest1_Scream
.byte 0x00, 0x00, 0x00, 0x00
.4byte TimidQuest1_Close
.byte 0x01, 0x00, 0x00, 0x00
.4byte TimidQuest1_Shake
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global TimidQuest1_Shake
TimidQuest1_Shake:
.string "Shake hands with it.\0"
.align 2,0
.global TimidQuest1_Close
TimidQuest1_Close:
.string "Close the lid without a word.\0"
.align 2,0
.global TimidQuest1_Scream
TimidQuest1_Scream:
.string "Scream and run.\0"
.align 2,0
.global TimidQuest1
TimidQuest1:
.4byte TimidQuest1Question
.4byte TimidQuest1Answers
.4byte TimidQuest1Points
.global TimidQuest1Question
TimidQuest1Question:
.string "A human hand extends out of a toilet!\n"
.string "What would you do?\0"
.align 2,0
@ Question 2, Category 7 (Timid)
.global TimidQuest2Points
TimidQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
.global TimidQuest2Answers
TimidQuest2Answers:
.4byte TimidQuest2_Thumb
.byte 0x00, 0x00, 0x00, 0x00
.4byte TimidQuest2_Index
.byte 0x01, 0x00, 0x00, 0x00
.4byte TimidQuest2_Middle
.byte 0x02, 0x00, 0x00, 0x00
.4byte TimidQuest2_Ring
.byte 0x03, 0x00, 0x00, 0x00
.4byte TimidQuest2_Little
.byte 0x04, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global TimidQuest2_Little
TimidQuest2_Little:
.string "Little finger.\0"
.align 2,0
.global TimidQuest2_Ring
TimidQuest2_Ring:
.string "Ring finger.\0"
.align 2,0
.global TimidQuest2_Middle
TimidQuest2_Middle:
.string "Middle finger.\0"
.align 2,0
.global TimidQuest2_Index
TimidQuest2_Index:
.string "Index finger.\0"
.align 2,0
.global TimidQuest2_Thumb
TimidQuest2_Thumb:
.string "Thumb.\0"
.align 2,0
.global TimidQuest2
TimidQuest2:
.4byte TimidQuest2Question
.4byte TimidQuest2Answers
.4byte TimidQuest2Points
.global TimidQuest2Question
TimidQuest2Question:
.string "Grab any digit on your left hand with your\n"
.string "right hand.{WAIT_PRESS}\n"
.string "Which digit did you grab?\0"
.align 2,0
@ Question 3, Category 7 (Timid)
.global TimidQuest3Points
TimidQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
.global TimidQuest3Answers
TimidQuest3Answers:
.4byte TimidQuest3_Kick
.byte 0x00, 0x00, 0x00, 0x00
.4byte TimidQuest3_Cry
.byte 0x01, 0x00, 0x00, 0x00
.4byte TimidQuest3_Clean
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
TimidQuest3_Clean:
.string "Clean it.\0"
.align 2,0
TimidQuest3_Cry:
.string "Cry.\0"
.align 2,0
TimidQuest3_Kick:
.string "Kick the door.\0"
.align 2,0
.global TimidQuest3
TimidQuest3:
.4byte TimidQuest3Question
.4byte TimidQuest3Answers
.4byte TimidQuest3Points
.global TimidQuest3Question
TimidQuest3Question:
.string "You are suddenly locked inside a\n"
.string "pitch-black room!{WAIT_PRESS}\n"
.string "What do you do?\0"
.align 2,0
@ Question 4, Category 7 (Timid)
.global TimidQuest4Points
TimidQuest4Points:
.byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global TimidQuest4Answers
TimidQuest4Answers:
.4byte TimidQuest4_NoProb
.byte 0x00, 0x00, 0x00, 0x00
.4byte TimidQuest4_Scared
.byte 0x01, 0x00, 0x00, 0x00
.4byte TimidQuest4_Someone
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global TimidQuest4_Someone
TimidQuest4_Someone:
.string "With someone I like.\0"
.align 2,0
.global TimidQuest4_Scared
TimidQuest4_Scared:
.string "Uh... N-no...\0"
.align 2,0
.global TimidQuest4_NoProb
TimidQuest4_NoProb:
.string "No problem!\0"
.align 2,0
.global TimidQuest4
TimidQuest4:
.4byte TimidQuest4Question
.4byte TimidQuest4Answers
.4byte TimidQuest4Points
.global TimidQuest4Question
TimidQuest4Question:
.string "Can you go into a haunted house?\0"
.align 2,0
@ Question 1, Category 8 (Hasty)
.global HastyQuest1Points
HastyQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global HastyQuest1Answers
HastyQuest1Answers:
.4byte HastyQuest1_Now
.byte 0x00, 0x00, 0x00, 0x00
.4byte HastyQuest1_Later
.byte 0x01, 0x00, 0x00, 0x00
.4byte HastyQuest1_Someone
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global HastyQuest1_Someone
HastyQuest1_Someone:
.string "Get someone to open it.\0"
.align 2,0
.global HastyQuest1_Later
HastyQuest1_Later:
.string "Open it later.\0"
.align 2,0
.global HastyQuest1_Now
HastyQuest1_Now:
.string "Open it now.\0"
.align 2,0
.global HastyQuest1
HastyQuest1:
.4byte HastyQuest1Question
.4byte HastyQuest1Answers
.4byte HastyQuest1Points
.global HastyQuest1Question
HastyQuest1Question:
.string "You receive a gift!{WAIT_PRESS}\n"
.string "But you don{APOSTROPHE}t know what{APOSTROPHE}s in it.{WAIT_PRESS}\n"
.string "You{APOSTROPHE}re curious{COMMA} so what do you do?\0"
.align 2,0
@ Question 2, Category 8 (Hasty)
.global HastyQuest2Points
HastyQuest2Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
.global HastyQuest2Answers
HastyQuest2Answers:
.4byte HastyQuest2_Spend
.byte 0x00, 0x00, 0x00, 0x00
.4byte HastyQuest2_Save
.byte 0x01, 0x00, 0x00, 0x00
.4byte HastyQuest2_Give
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global HastyQuest2_Give
HastyQuest2_Give:
.string "Give it away.\0"
.align 2,0
.global HastyQuest2_Save
HastyQuest2_Save:
.string "Save it.\0"
.align 2,0
.global HastyQuest2_Spend
HastyQuest2_Spend:
.string "Spend it now.\0"
.align 2,0
.global HastyQuest2
HastyQuest2:
.4byte HastyQuest2Question
.4byte HastyQuest2Answers
.4byte HastyQuest2Points
.global HastyQuest2Question
HastyQuest2Question:
.string "You win a lottery!{WAIT_PRESS}\n"
.string "What do you do with the money?\0"
.align 2,0
@ Question 3, Category 8 (Hasty)
.global HastyQuest3Points
HastyQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global HastyQuest3Answers
HastyQuest3Answers:
.4byte HastyQuest3_Open
.byte 0x00, 0x00, 0x00, 0x00
.4byte HastyQuest3_Trap
.byte 0x01, 0x00, 0x00, 0x00
.4byte HastyQuest3_Empty
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global HastyQuest3_Empty
HastyQuest3_Empty:
.string "It{APOSTROPHE}s going to be empty...\0"
.align 2,0
.global HastyQuest3_Trap
HastyQuest3_Trap:
.string "No... Could be a trap...\0"
.align 2,0
.global HastyQuest3_Open
HastyQuest3_Open:
.string "Open it right away!\0"
.align 2,0
.global HastyQuest3
HastyQuest3:
.4byte HastyQuest3Question
.4byte HastyQuest3Answers
.4byte HastyQuest3Points
.global HastyQuest3Question
HastyQuest3Question:
.string "You come across a treasure chest!\n"
.string "What do you do?\0"
.align 2,0
@ Question 4, Category 8 (Hasty)
.global HastyQuest4Points
HastyQuest4Points:
.byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global HastyQuest4Answers
HastyQuest4Answers:
.4byte HastyQuest4_Irritate
.byte 0x00, 0x00, 0x00, 0x00
.4byte HastyQuest4_Wait
.byte 0x01, 0x00, 0x00, 0x00
.4byte HastyQuest4_Bail
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global HastyQuest4_Bail
HastyQuest4_Bail:
.string "Get angry and bail.\0"
.align 2,0
.global HastyQuest4_Wait
HastyQuest4_Wait:
.string "Wait patiently.\0"
.align 2,0
.global HastyQuest4_Irritate
HastyQuest4_Irritate:
.string "Become irritated.\0"
.align 2,0
.global HastyQuest4
HastyQuest4:
.4byte HastyQuest4Question
.4byte HastyQuest4Answers
.4byte HastyQuest4Points
.global HastyQuest4Question
HastyQuest4Question:
.string "Your friend fails to show up for a meeting\n"
.string "at the promised time.\n"
.string "What do you do?\0"
.align 2,0
@ Question 1, Category 9 (Sassy)
.global SassyQuest1Points
SassyQuest1Points:
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global SassyQuest1Answers
SassyQuest1Answers:
.4byte SassyQuest1_Calmly
.byte 0x00, 0x00, 0x00, 0x00
.4byte SassyQuest1_Nervous
.byte 0x01, 0x00, 0x00, 0x00
.4byte SassyQuest1_Whatever
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global SassyQuest1_Whatever
SassyQuest1_Whatever:
.string "WHATEVER!!\0"
.align 2,0
.global SassyQuest1_Nervous
SassyQuest1_Nervous:
.string "Speak nervously.\0"
.align 2,0
.global SassyQuest1_Calmly
SassyQuest1_Calmly:
.string "Speak calmly.\0"
.align 2,0
.global SassyQuest1
SassyQuest1:
.4byte SassyQuest1Question
.4byte SassyQuest1Answers
.4byte SassyQuest1Points
.global SassyQuest1Question
SassyQuest1Question:
.string "Your country{APOSTROPHE}s leader is in front of you.\n"
.string "How do you speak to him or her?\0"
.align 2,0
@ Question 2, Category 9 (Sassy)
.global SassyQuest2Points
SassyQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global SassyQuest2Answers
SassyQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global SassyQuest2
SassyQuest2:
.4byte SassyQuest2Question
.4byte SassyQuest2Answers
.4byte SassyQuest2Points
.global SassyQuest2Question
SassyQuest2Question:
.string "Do others tell you to watch what you say?\0"
.align 2,0
@ Question 3, Category 9 (Sassy)
.global SassyQuest3Points
SassyQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.global SassyQuest3Answers
SassyQuest3Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global SassyQuest3
SassyQuest3:
.4byte SassyQuest3Question
.4byte SassyQuest3Answers
.4byte SassyQuest3Points
.global SassyQuest3Question
SassyQuest3Question:
.string "Do you think you are cool?\n"
.string "Be honest.\0"
.align 2,0
@ Question 4, Category 9 (Sassy)
.global SassyQuest4Points
SassyQuest4Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
.global SassyQuest4Answers
SassyQuest4Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global SassyQuest4
SassyQuest4:
.4byte SassyQuest4Question
.4byte SassyQuest4Answers
.4byte SassyQuest4Points
.global SassyQuest4Question
SassyQuest4Question:
.string "Can you sincerely thank someone when you\n"
.string "feel grateful?\0"
.align 2,0
@ Question 1, Category 10 (Calm)
.global CalmQuest1Points
CalmQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global CalmQuest1Answers
CalmQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global CalmQuest1
CalmQuest1:
.4byte CalmQuest1Question
.4byte CalmQuest1Answers
.4byte CalmQuest1Points
.global CalmQuest1Question
CalmQuest1Question:
.string "Do you occasionally consider yourself\n"
.string "dull and overly cautious?\0"
.align 2,0
@ Question 2, Category 10 (Calm)
.global CalmQuest2Points
CalmQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global CalmQuest2Answers
CalmQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global CalmQuest2
CalmQuest2:
.4byte CalmQuest2Question
.4byte CalmQuest2Answers
.4byte CalmQuest2Points
.global CalmQuest2Question
CalmQuest2Question:
.string "Do you dream of lounging around idly\n"
.string "without much excitement?\0"
.align 2,0
@ Question 3, Category 10 (Calm)
.global CalmQuest3Points
CalmQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.global CalmQuest3Answers
CalmQuest3Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global CalmQuest3
CalmQuest3:
.4byte CalmQuest3Question
.4byte CalmQuest3Answers
.4byte CalmQuest3Points
.global CalmQuest3Question
CalmQuest3Question:
.string "Do you like to fight?\0"
.align 2,0
@ Question 4, Category 10 (Calm)
.global CalmQuest4Points
CalmQuest4Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global CalmQuest4Answers
CalmQuest4Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global CalmQuest4
CalmQuest4:
.4byte CalmQuest4Question
.4byte CalmQuest4Answers
.4byte CalmQuest4Points
.global CalmQuest4Question
CalmQuest4Question:
.string "Do you often yawn?\0"
.align 2,0
@ Question 1, Category 11 (Relaxed)
.global RelaxedQuest1Points
RelaxedQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global RelaxedQuest1Answers
RelaxedQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global RelaxedQuest1
RelaxedQuest1:
.4byte RelaxedQuest1Question
.4byte RelaxedQuest1Answers
.4byte RelaxedQuest1Points
.global RelaxedQuest1Question
RelaxedQuest1Question:
.string "Are you often late for school or meetings?\0"
.align 2,0
@ Question 2, Category 11 (Relaxed)
.global RelaxedQuest2Points
RelaxedQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global RelaxedQuest2Answers
RelaxedQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global RelaxedQuest2
RelaxedQuest2:
.4byte RelaxedQuest2Question
.4byte RelaxedQuest2Answers
.4byte RelaxedQuest2Points
.global RelaxedQuest2Question
RelaxedQuest2Question:
.string "Do you get the feeling that you{APOSTROPHE}ve slowed\n"
.string "down lately?\0"
.align 2,0
@ Question 3, Category 11 (Relaxed)
.global RelaxedQuest3Points
RelaxedQuest3Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global RelaxedQuest3Answers
RelaxedQuest3Answers:
.4byte RelaxedQuest3_Great
.byte 0x00, 0x00, 0x00, 0x00
.4byte RelaxedQuest3_Snore
.byte 0x01, 0x00, 0x00, 0x00
.4byte RelaxedQuest3_Home
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global RelaxedQuest3_Home
RelaxedQuest3_Home:
.string "I want to go home soon!\0"
.align 2,0
.global RelaxedQuest3_Snore
RelaxedQuest3_Snore:
.string "Snore...\0"
.align 2,0
.global RelaxedQuest3_Great
RelaxedQuest3_Great:
.string "This feels great!\0"
.align 2,0
.global RelaxedQuest3
RelaxedQuest3:
.4byte RelaxedQuest3Question
.4byte RelaxedQuest3Answers
.4byte RelaxedQuest3Points
.global RelaxedQuest3Question
RelaxedQuest3Question:
.string "It is a pleasant day at the beach.\n"
.string "How do you feel?\0"
.align 2,0
@ Question 4, Category 11 (Relaxed)
.global RelaxedQuest4Points
RelaxedQuest4Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global RelaxedQuest4Answers
RelaxedQuest4Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global RelaxedQuest4
RelaxedQuest4:
.4byte RelaxedQuest4Question
.4byte RelaxedQuest4Answers
.4byte RelaxedQuest4Points
.global RelaxedQuest4Question
RelaxedQuest4Question:
.string "Do you fall asleep without noticing?\0"
.align 2,0
@ Question 1, Category 12 (Lonely)
.global LonelyQuest1Points
LonelyQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global LonelyQuest1Answers
LonelyQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global LonelyQuest1
LonelyQuest1:
.4byte LonelyQuest1Question
.4byte LonelyQuest1Answers
.4byte LonelyQuest1Points
.global LonelyQuest1Question
LonelyQuest1Question:
.string "Do you feel lonesome when you are alone?\0"
.align 2,0
@ Question 2, Category 12 (Lonely)
.global LonelyQuest2Points
LonelyQuest2Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
.global LonelyQuest2Answers
LonelyQuest2Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global LonelyQuest2
LonelyQuest2:
.4byte LonelyQuest2Question
.4byte LonelyQuest2Answers
.4byte LonelyQuest2Points
.global LonelyQuest2Question
LonelyQuest2Question:
.string "Do you hate to be the last person to leave\n"
.string "class at the end of a school day?\0"
.align 2,0
@ Question 3, Category 12 (Lonely)
.global LonelyQuest3Points
LonelyQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global LonelyQuest3Answers
LonelyQuest3Answers:
.4byte LonelyQuest3_On
.byte 0x00, 0x00, 0x00, 0x00
.4byte LonelyQuest3_Off
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global LonelyQuest3_Off
LonelyQuest3_Off:
.string "Turn it off.\0"
.align 2,0
.global LonelyQuest3_On
LonelyQuest3_On:
.string "Leave it on.\0"
.align 2,0
.global LonelyQuest3
LonelyQuest3:
.4byte LonelyQuest3Question
.4byte LonelyQuest3Answers
.4byte LonelyQuest3Points
.global LonelyQuest3Question
LonelyQuest3Question:
.string "What do you do with your room{APOSTROPHE}s light\n"
.string "when you{APOSTROPHE}re going to bed at night?\0"
.align 2,0
@ Question 4, Category 12 (Lonely)
.global LonelyQuest4Points
LonelyQuest4Points:
.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00
.global LonelyQuest4Answers
LonelyQuest4Answers:
.4byte LonelyQuest4_Trip
.byte 0x00, 0x00, 0x00, 0x00
.4byte LonelyQuest4_Hang
.byte 0x01, 0x00, 0x00, 0x00
.4byte LonelyQuest4_Huddle
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global LonelyQuest4_Huddle
LonelyQuest4_Huddle:
.string "Huddle in a corner.\0"
.align 2,0
.global LonelyQuest4_Hang
LonelyQuest4_Hang:
.string "Hang around vacantly.\0"
.align 2,0
.global LonelyQuest4_Trip
LonelyQuest4_Trip:
.string "Go on a trip.\0"
.align 2,0
.global LonelyQuest4
LonelyQuest4:
.4byte LonelyQuest4Question
.4byte LonelyQuest4Answers
.4byte LonelyQuest4Points
.global LonelyQuest4Question
LonelyQuest4Question:
.string "It{APOSTROPHE}s a weekend{COMMA} but no one will play\n"
.string "with you...\n"
.string "What do you do?\0"
.align 2,0
@ Question 1, Category 13 (Quirky)
.global QuirkyQuest1Points
QuirkyQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
.byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global QuirkyQuest1Answers
QuirkyQuest1Answers:
.4byte HardyQuest2_Yes
.byte 0x00, 0x00, 0x00, 0x00
.4byte HardyQuest3_No
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global QuirkyQuest1
QuirkyQuest1:
.4byte QuirkyQuest1Question
.4byte QuirkyQuest1Answers
.4byte QuirkyQuest1Points
.global QuirkyQuest1Question
QuirkyQuest1Question:
.string "Do you sometimes run out of things to do\n"
.string "all of a sudden?\0"
.align 2,0
@ Question 2, Category 13 (Quirky)
.global QuirkyQuest2Points
QuirkyQuest2Points:
.byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global QuirkyQuest2Answers
QuirkyQuest2Answers:
.4byte QuirkyQuest2_Reply
.byte 0x00, 0x00, 0x00, 0x00
.4byte QuirkyQuest2_MayMayNot
.byte 0x01, 0x00, 0x00, 0x00
.4byte QuirkyQuest2_Trouble
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global QuirkyQuest2_Trouble
QuirkyQuest2_Trouble:
.string "Too much trouble.\0"
.align 2,0
.global QuirkyQuest2_MayMayNot
QuirkyQuest2_MayMayNot:
.string "May reply{COMMA} may not.\0"
.align 2,0
.global QuirkyQuest2_Reply
QuirkyQuest2_Reply:
.string "Reply right away.\0"
.align 2,0
.global QuirkyQuest2
QuirkyQuest2:
.4byte QuirkyQuest2Question
.4byte QuirkyQuest2Answers
.4byte QuirkyQuest2Points
.global QuirkyQuest2Question
QuirkyQuest2Question:
.string "How quickly do you respond to an e-mail?\0"
.align 2,0
@ Question 3, Category 13 (Quirky)
.global QuirkyQuest3Points
QuirkyQuest3Points:
.byte 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
.global QuirkyQuest3Answers
QuirkyQuest3Answers:
.4byte QuirkyQuest3_Declare
.byte 0x00, 0x00, 0x00, 0x00
.4byte QuirkyQuest3_Hello
.byte 0x01, 0x00, 0x00, 0x00
.4byte QuirkyQuest3_Prank
.byte 0x02, 0x00, 0x00, 0x00
.4byte QuirkyQuest3_Afar
.byte 0x03, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global QuirkyQuest3_Afar
QuirkyQuest3_Afar:
.string "Look from afar.\0"
.align 2,0
.global QuirkyQuest3_Prank
QuirkyQuest3_Prank:
.string "Pull a prank to get attention.\0"
.align 2,0
.global QuirkyQuest3_Hello
QuirkyQuest3_Hello:
.string "Might say hello...\0"
.align 2,0
.global QuirkyQuest3_Declare
QuirkyQuest3_Declare:
.string "Bravely declare my love.\0"
.align 2,0
.global QuirkyQuest3
QuirkyQuest3:
.4byte QuirkyQuest3Question
.4byte QuirkyQuest3Answers
.4byte QuirkyQuest3Points
.global QuirkyQuest3Question
QuirkyQuest3Question:
.string "There is a person you like...{WAIT_PRESS}\n"
.string "But there{APOSTROPHE}s no opportunity to get close.\n"
.string "What do you do?\0"
.align 2,0
@ Question 4, Category 13 (Quirky)
.global QuirkyQuest4Points
QuirkyQuest4Points:
.byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Docile
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Sassy
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 @ +2 Quirky
.global QuirkyQuest4Answers
QuirkyQuest4Answers:
.4byte QuirkyQuest4_GoRight
.byte 0x00, 0x00, 0x00, 0x00
.4byte QuirkyQuest4_GoLeft
.byte 0x01, 0x00, 0x00, 0x00
.4byte QuirkyQuest4_EitherSide
.byte 0x02, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global QuirkyQuest4_EitherSide
QuirkyQuest4_EitherSide:
.string "Choose either side.\0"
.align 2,0
.global QuirkyQuest4_GoLeft
QuirkyQuest4_GoLeft:
.string "It{APOSTROPHE}s a trap! Go left.\0"
.align 2,0
.global QuirkyQuest4_GoRight
QuirkyQuest4_GoRight:
.string "Instantly go right.\0"
.align 2,0
.global QuirkyQuest4
QuirkyQuest4:
.4byte QuirkyQuest4Question
.4byte QuirkyQuest4Answers
.4byte QuirkyQuest4Points
.global QuirkyQuest4Question
QuirkyQuest4Question:
.string "The road forks to the right and left.\n"
.string "You are told there is a treasure on the\n"
.string "right side. What do you do?\0"
.align 2,0
@ Question 1, Category 14 (Miscellaneous)
.global MiscQuest1Points
MiscQuest1Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 @ +1 Hasty, +1 Quirky
.byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 @ +1 Jolly, +1 Lonely
.global MiscQuest1Answers
MiscQuest1Answers:
.4byte MiscQuest1_Alone
.byte 0x00, 0x00, 0x00, 0x00
.4byte MiscQuest1_Others
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global MiscQuest1_Others
MiscQuest1_Others:
.string "Go with others.\0"
.align 2,0
.global MiscQuest1_Alone
MiscQuest1_Alone:
.string "Go alone.\0"
.align 2,0
.global MiscQuest1
MiscQuest1:
.4byte MiscQuest1Question
.4byte MiscQuest1Answers
.4byte MiscQuest1Points
.global MiscQuest1Question
MiscQuest1Question:
.string "On vacation outings{COMMA} you want to...\0"
.align 2,0
@ Question 2, Category 14 (Miscellaneous)
.global MiscQuest2Points
MiscQuest2Points:
.byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Jolly
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 @ +1 Sassy, +1 Quirky
.global MiscQuest2Answers
MiscQuest2Answers:
.4byte NaiveQuest1_Love
.byte 0x00, 0x00, 0x00, 0x00
.4byte MiscQuest2_DontCare
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global MiscQuest2_DontCare
MiscQuest2_DontCare:
.string "Don{APOSTROPHE}t care.\0"
.align 2,0
.global MiscQuest2
MiscQuest2:
.4byte MiscQuest2Question
.4byte MiscQuest2Answers
.4byte MiscQuest2Points
.global MiscQuest2Question
MiscQuest2Question:
.string "It{APOSTROPHE}s the summer festival!\n"
.string "Do you like carnivals?\0"
.align 2,0
@ Question 3, Category 14 (Miscellaneous)
.global MiscQuest3Points
MiscQuest3Points:
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 @ +1 Naive, +1 Lonely
.byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +1 Sassy, +1 Hasty
.global MiscQuest3Answers
MiscQuest3Answers:
.4byte MiscQuest3Happy @ Happy pointer
.byte 0x00, 0x00, 0x00, 0x00
.4byte MiscQuest3NotHappy @ Not happy pointer
.byte 0x01, 0x00, 0x00, 0x00
.byte 0x00, 0x00, 0x00, 0x00
.4byte -1
.global MiscQuest3NotHappy
MiscQuest3NotHappy:
.string "Not happy.\0"
.align 2,0
.global MiscQuest3Happy
MiscQuest3Happy:
.string "Happy!\0"
.align 2,0
.global MiscQuest3
MiscQuest3:
.4byte MiscQuest3Question
.4byte MiscQuest3Answers
.4byte MiscQuest3Points
.global MiscQuest3Question
MiscQuest3Question:
.string "Somebody calls you {QUOTE_START}weird but funny.{QUOTE_END}\n"
.string "How does that make you feel?\0"
.align 2,0
|