File size: 786 Bytes
59c3ada |
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 |
export const STORY_DATA = {
characters: [
"a brave squirrel",
"a shy dragon",
"a clever fox",
"a sleepy astronaut",
"a grumpy gnome",
"a cheerful princess",
"a tiny robot",
"a magical cat",
],
settings: [
"on the moon",
"in an enchanted forest",
"under the sea",
"in a castle made of clouds",
"inside a giant's boot",
"at a wizard's school",
"on a floating island",
],
items: [
"discovers a map to hidden treasure",
"finds a pair of flying shoes",
"stumbles upon an invisible cloak",
"befriends a friendly ghost",
"uncovers a secret door",
"meets a wise old man",
],
themes: ["Fairy Tale", "Silly", "Adventurous", "Magical", "Bedtime", "Funny"],
length: ["Short", "Medium", "Long"],
};
|