Untitled

 avatar
unknown
plain_text
2 years ago
2.0 kB
5
Indexable
// First page
// Depicting a newly minted and shiny coin with a hopeful expression
let newCoin = {
  type: "coin",
  condition: "mint",
  shine: "bright",
  expression: "hopeful"
}

// Second page
// Showing the coin being passed from one person to another, appearing lost and confused
let lostCoin = {
  type: "coin",
  condition: "used",
  appearance: "lost",
  emotion: "confused"
}

// Third page
// Depicting the coin inside a piggy bank, looking content and happy
let piggyCoin = {
  type: "coin",
  container: "piggy bank",
  location: "shelf",
  emotion: "happy"
}

// Fourth page
// Illustrating the coin lying inside a garbage can, feeling abandoned and forgotten
let forgottenCoin = {
  type: "coin",
  location: "garbage can",
  feeling: "abandoned"
}

// Fifth page
// Showing the coin rolling along the ground in a busy marketplace, appearing small and insignificant
let insignificantCoin = {
  type: "coin",
  location: "marketplace",
  size: "small",
  feeling: "insignificant"
}

// Sixth page
// Depicting the coin in a dark and dangerous alleyway, looking scared and vulnerable
let scaredCoin = {
  type: "coin",
  location: "alleyway",
  feeling: "scared"
}

// Seventh page
// Showing a friendly hand reaching down to pick up the coin, providing hope and compassion
let compassionateHand = {
  type: "hand",
  action: "picking up",
  emotion: "friendly"
}

// Eighth page
// Depicting the coin in the palm of the hand, learning its worth and value
let valuableCoin = {
  type: "coin",
  location: "hand",
  worth: ["toy", "book", "pie"],
  emotion: "curious"
}

// Ninth page
// Showing the coin looking up at the person, seeking to understand its own value
let inquisitiveCoin = {
  type: "coin",
  location: "hand",
  emotion: "questioning"
}

// Tenth page
// Illustrating a mosaic of coins of all shapes and sizes, celebrating their unique worth
let mosaicCoins = {
  type: "coins",
  arrangement: "mosaic",
  worth: "unique"
}
Editor is loading...