Hacker News new | ask | show | jobs
by snowflakeandrey 1257 days ago
Editing the kind of magic shop it is, add "very high end" to that sentence and see the difference. Specifically —

  {
    "id": 2,
    "name": "Magic Wand",
    "description": "A magical wand that can cast powerful spells.",
    "sku": "MAGIC-WAND-001",
    "price": 49.99
  },
Is instead:

  {
    "id": 4,
    "name": "Magic Wand",
    "description": "A powerful wand made from a magical tree.",
    "sku": "MAGIC-WAND-001",
    "price": 1500.00
  }

Or with "fancy", it is —

  {
    "id": 3,
    "name": "Mystic Wand",
    "description": "A powerful wand that grants the wielder the ability to cast powerful spells.",
    "sku": "WAND-001",
    "price": "199.99"
  },
And if the magic shop is "run down", it might have —

  {
    "id": 3,
    "name": "Mystical Wand",
    "description": "A powerful wand that grants the wielder the ability to cast spells.",
    "sku": "WAND-001",
    "price": 29.99
  }
What a joy :)