1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59:19 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Hisuian Qwilfish",
fr: "Qwilfish de Hisui",
es: "Qwilfish de Hisui",
it: "Qwilfish di Hisui",
pt: "Qwilfish de Hisui",
de: "Hisui-Baldorfish"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 10
}, {
cost: ["Darkness", "Colorless"],
name: {
en: "Rolling Tackle",
fr: "Roulé-Boulé",
es: "Placaje Giro",
it: "Rollazione",
pt: "Golpe de Colisão Rolante",
de: "Rolltackle"
},
damage: 30
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card