mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
41
data/Scarlet & Violet/Paradox Rift/127.ts
Normal file
41
data/Scarlet & Violet/Paradox Rift/127.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user