Skip to content

Commit

Permalink
Start adding flavor text to the cards database (#7153)
Browse files Browse the repository at this point in the history
  • Loading branch information
msullivan authored Apr 12, 2024
1 parent 996a1f9 commit 3f25e25
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions tests/schemas/cards_setup.edgeql
Original file line number Diff line number Diff line change
Expand Up @@ -32,49 +32,56 @@ INSERT Card {
element := 'Fire',
cost := 5,
awards := (SELECT Award FILTER .name IN {'1st', '3rd'}),
text := '"Watch your back, shoot straight, conserve ammo, and never, ever, cut a deal with a dragon." -Street Proverb',
};

INSERT Card {
name := 'Bog monster',
element := 'Water',
cost := 2
cost := 2,
};

INSERT Card {
name := 'Giant turtle',
element := 'Water',
cost := 3
cost := 3,
text := '"The world rides through space on the back of a turtle. This is one of the great ancient world myths, found wherever men and turtles were gathered together;"',
};

INSERT Card {
name := 'Dwarf',
element := 'Earth',
cost := 1
cost := 1,
text := '"The dwarves of yore made mighty spells / While hammers fell like ringing bells"',
};

INSERT Card {
name := 'Golem',
element := 'Earth',
cost := 3
cost := 3,
# text := '"The only smell Josef could detect arising from the swarthy flesh of the Golem was one too faint to name, acrid and green, that he was only later to identify as the sweet stench, on a summer afternoon in the dog days, of the Moldau."',
text := '"Every golem in the history of the world, from Rabbi Hanina’s delectable goat to the river-clay Frankenstein of Rabbi Judah Loew ben Bezalel, was summoned into existence through language, through murmuring, recital, and kabbalistic chitchat—was, literally, talked into life."',
};

INSERT Card {
name := 'Sprite',
element := 'Air',
cost := 1
cost := 1,
};

INSERT Card {
name := 'Giant eagle',
element := 'Air',
cost := 2
cost := 2,
text := '"The North Wind blows, but we shall outfly it"',
};

INSERT SpecialCard {
name := 'Djinn',
element := 'Air',
cost := 4,
awards := (SELECT Award FILTER .name = '3rd'),
text := '"Phenomenal cosmic powers! ... Itty bitty living space!"',
};


Expand Down

0 comments on commit 3f25e25

Please sign in to comment.