File size: 715 Bytes
1be0bd5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { macondo } from "@/lib/fonts"
import { Game } from "./types"

const initialSituation = [
  `looking at a beautiful pyramid, ancient egypt, during golden hour, surrounded by sand dunes, near the Nile`,
].join(", ")

const initialActionnables = [
  "pyramid",
  "person",
  "rocks",
  "dune",
  "sceptre",
  "tree",
  "river",
  "boat",
  "crocodile"
]

export const game: Game = {
  title: "Pharaoh",
  type: "pharaoh",
  engine: "spherical_image",
  className: macondo.className,
  initialSituation,
  initialActionnables,
  getScenePrompt: (situation?: string) => [
    `Screenshot from a videogame`,
    `unreal engine`,
    `ancient egypt`, 
    `first person`,
    situation || initialSituation,
  ]
}