Spaces:
Paused
Paused
Commit
·
78d1d5a
1
Parent(s):
367ab49
adding more actions
Browse files- src/app/main.tsx +7 -5
src/app/main.tsx
CHANGED
@@ -9,14 +9,16 @@ const initialScene = `medium shot of a single clownfish idling near a yellow cor
|
|
9 |
|
10 |
const actions = [
|
11 |
"idling",
|
12 |
-
"
|
13 |
-
"
|
|
|
|
|
14 |
]
|
15 |
|
16 |
const positions = [
|
17 |
-
"
|
18 |
-
"
|
19 |
-
"
|
20 |
]
|
21 |
|
22 |
const pick = (items: string[]) => items[Math.floor(Math.random()*items.length)]
|
|
|
9 |
|
10 |
const actions = [
|
11 |
"idling",
|
12 |
+
"fighting another fish",
|
13 |
+
"escaping an octopus",
|
14 |
+
"eating some coral",
|
15 |
+
"eating another fish"
|
16 |
]
|
17 |
|
18 |
const positions = [
|
19 |
+
"centered in the middle",
|
20 |
+
"hiding in the sand",
|
21 |
+
"hiding in the coral"
|
22 |
]
|
23 |
|
24 |
const pick = (items: string[]) => items[Math.floor(Math.random()*items.length)]
|