mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 01:19:54 +00:00
51 lines
753 B
TypeScript
51 lines
753 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paldean Fates"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Arctibax",
|
|
fr: "Cryodo",
|
|
es: "Arctibax",
|
|
it: "Arctibax",
|
|
pt: "Arctibax"
|
|
},
|
|
|
|
rarity: "Shiny rare",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Water"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Sharp Fin",
|
|
fr: "Aileron Aiguisé",
|
|
es: "Cortaleta",
|
|
it: "Pinnaffilata",
|
|
pt: "Barbatana Afiada"
|
|
},
|
|
|
|
damage: 40
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Frost Smash",
|
|
fr: "Impact Glacial",
|
|
es: "Golpe Gélido",
|
|
it: "Gelocolpo",
|
|
pt: "Pancada Congelada"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |