1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 01:19:54 +00:00

36 lines
512 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Gyarados"
},
illustrator: "Mituhiro Arita",
category: "Pokemon",
hp: 150,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Water", "Water", "Water", "Water"],
name: {
en: "Hyper Beam"
},
effect: {
en: "Discard a random Energy from your opponent's Active Pokémon."
},
damage: "100"
}],
retreat: 4,
rarity: "Three Diamond"
}
export default card