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: "Articuno"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 100,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
en: "Ice Beam"
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed"
},
damage: "60"
}],
retreat: 1,
rarity: "Three Diamond"
}
export default card