mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
54
data/Scarlet & Violet/Paradox Rift/114.ts
Normal file
54
data/Scarlet & Violet/Paradox Rift/114.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Purrloin",
|
||||
fr: "Chacripan",
|
||||
es: "Purrloin",
|
||||
it: "Purrloin",
|
||||
pt: "Purrloin",
|
||||
de: "Felilou"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Stampede",
|
||||
fr: "Ruée",
|
||||
es: "Estampida",
|
||||
it: "Fuggi Fuggi",
|
||||
pt: "Estouro",
|
||||
de: "Zertrampeln"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Cat Kick",
|
||||
fr: "Coup d'Patte",
|
||||
es: "Patada Gato",
|
||||
it: "Calciogatto",
|
||||
pt: "Chute do Gato",
|
||||
de: "Katzenkick"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user