1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

46 lines
652 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
dexId: [597],
set: Set,
name: {
en: "Ferroseed",
fr: "Grindur",
es: "Ferroseed",
it: "Ferroseed",
pt: "Ferroseed",
de: "Kastadur"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Metal"],
stage: "Basic",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Spike Sting",
fr: "Pic Piquant",
es: "Picotazo Púas",
it: "Aculeopuntura",
pt: "Ferroada de Espinhos",
de: "Stachelstich"
},
damage: 30
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card