-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleData.js
More file actions
125 lines (123 loc) · 2.76 KB
/
sampleData.js
File metadata and controls
125 lines (123 loc) · 2.76 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
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
const sampleData = [
{
outcomeId: 1,
story: 'The party sees a dragon swooping down towards the party! It looks furious with hunger.',
endGame: false,
storyImage: 'https://media-waterdeep.cursecdn.com/avatars/thumbnails/0/147/1000/1000/636252758629652181.jpeg',
choices: [
{
text: 'Run and duck for cover!',
outcomeId: 2
},
{
text: 'Draw your weapons and attack!',
outcomeId: 3
},
{
text: 'Beg for mercy.',
outcomeId: 4
},
{
text: 'Seduce the dragon.',
outcomeId: 5
}
]
},
{
outcomeId: 2,
story: 'The dragon flies by without noticing the party, but it takes your prized cow, Lovabull. Sad day.',
storyImage: 'https://cdn.dribbble.com/users/6115/screenshots/1252357/damages2.png',
endGame: true,
choices: [
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
}
]
},
{
outcomeId: 3,
story: 'The party rushes forward slashing with sword, loosing arrows, and slinging spells! You feel a brief rush of heat before the dragon enjoys a nice meal. TPK!',
storyImage: 'https://i.pinimg.com/originals/2f/fc/4a/2ffc4af27468a68b20bf6045f4b91d3f.jpg',
endGame: true,
choices: [
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
}
]
},
{
outcomeId: 4,
story: 'As the party protrates themselves in front of the dragon, everyone realizes no one took the time to learn Draconic. But fear not, the shame over being monolingual passes quickly after being showered in flames.',
storyImage: 'https://i.pinimg.com/originals/b0/ac/25/b0ac2534bda6e6609cb8955b8c5ec1dc.jpg',
endGame: true,
choices: [
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
}
]
},
{
outcomeId: 5,
story: 'After a lenghtly and supple conversation, the dragon feels seen for the first time in a thousand years. It flies off to place this lovely memory in it\'s treasure hoard.',
storyImage: 'https://i.imgur.com/FS3kZQx.png',
endGame: true,
choices: [
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
},
{
text: '',
outcomeId: 0
}
]
},
]
export default sampleData;