1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 62f6671b63
feat: Add Mythical Island set (#624)
* feat: Add A1a

Signed-off-by: Avior <git@avior.me>

* fix: test failing

Signed-off-by: Avior <git@avior.me>

---------

Signed-off-by: Avior <git@avior.me>
2024-12-19 01:16:28 +01:00

45 lines
678 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Gyarados ex"
},
illustrator: "PLANETA CG Works",
category: "Pokemon",
hp: 180,
types: ["Water"],
evolveFrom: {
en: "Magikarp"
},
stage: "Stage1",
suffix: "EX",
attacks: [{
name: {
en: "Rampaging Whirlpool"
},
damage: 140,
cost: ["Water", "Water", "Water", "Colorless"],
effect: {
en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 3,
rarity: "Two Star"
}
export default card