-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
94 lines (90 loc) · 3.72 KB
/
data.js
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
const questions = [
{
"question": "You find yourself in an enchanted forest at twilight. The air is thick with mystery. What do you do first?",
"options": [
{
"A": "Listen closely to the whispers of the wind, letting it guide your steps."
},
{
"B": "Climb the tallest tree you can find and look at the world from above."
},
{
"C": "Run barefoot through the woods, laughing wildly under the moonlight."
}
]
},
{
"question": "You stumble upon a hidden river in the forest. How do you cross it?",
"options": [
{
"A": "Build a raft and float gracefully, letting the current carry you wherever it may."
},
{
"B": "Dive right in, feeling the water ripple against your skin as you swim powerfully to the other side."
},
{
"C": "Wait patiently for a natural bridge to reveal itself, trusting the earth to guide your way."
}
]
},
{
"question": "A sudden storm rolls in. The wind howls, and the sky darkens. How do you face it?",
"options": [
{
"A": "Dance in the rain, fearless and alive, feeling every drop like a kiss from the heavens."
},
{
"B": "Find a cave, sheltering in its shadows while listening to the heartbeat of the storm."
},
{
"C": "Embrace the wind, letting it carry your soul as you howl back at the sky."
}
]
},
{
"question": "A stranger offers you a single wildflower. What do you do?",
"options": [
{
"A": "Take it gently, tucking it behind your ear and carrying its beauty with you."
},
{
"B": "Smell it, then toss it into the wind, watching the petals scatter freely."
},
{
"C": "Press it into a journal, preserving its memory forever."
}
]
},
{
"question": "You come across an ancient, weathered tree with a door hidden in its trunk. What’s inside?",
"options": [
{
"A": "A glowing, secret world where you can fly among stars and whisper to the moon."
},
{
"B": "A labyrinth of tunnels that lead to the heart of the earth, where untold treasures await."
},
{
"C": "A quiet room with a warm fire and soft cushions, where you can rest and dream endlessly."
}
]
}
]
const answers = [{
"animal": "The Soaring Eagle",
"description": "Your soul is free, wild, and untethered. You are driven by intuition, and your inner strength comes from your ability to see the big picture. Like the eagle, you soar above challenges and embrace new horizons."
},
{
"animal": "The Fierce Wolf",
"description": "Bold, loyal, and unafraid, you live with passion and a hunger for adventure. You follow your instincts and are always ready for the next journey, like the wolf leading its pack through the wild."
},
{
"animal": "The Gentle Deer",
"description": "Your soul is calm, gentle, and reflective. You find beauty in stillness and peace, preferring to move with grace through life’s twists and turns. Like the deer, you navigate life’s challenges with quiet wisdom."
},
{
"animal": "The Playful Fox",
"description": "You are a delightful blend of curiosity, cunning, and charm. Like the fox, you adapt quickly, always keeping life fresh and exciting. You balance your wild instincts with a sharp mind and an adventurous heart."
}
]
export { questions, answers };