mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
63
data/Scarlet & Violet/Paradox Rift/132.ts
Normal file
63
data/Scarlet & Violet/Paradox Rift/132.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Doublade",
|
||||
fr: "Dimoclès",
|
||||
es: "Doublade",
|
||||
it: "Doublade",
|
||||
pt: "Doublade",
|
||||
de: "Duokles"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
es: "Cuchillada",
|
||||
it: "Lacerazione",
|
||||
pt: "Talho",
|
||||
de: "Schlitzer"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Metal", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slashing Strike",
|
||||
fr: "Coup Déchirant",
|
||||
es: "Golpe Cuchillazo",
|
||||
it: "Lacerattacco",
|
||||
pt: "Ataque Cortante",
|
||||
de: "Schlitzender Schlag"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't use Slashing Strike.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup Déchirant.",
|
||||
es: "Durante tu próximo turno, este Pokémon no puede usar Golpe Cuchillazo.",
|
||||
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Lacerattacco.",
|
||||
pt: "Durante o seu próximo turno, este Pokémon não poderá usar Ataque Cortante.",
|
||||
de: "Während deines nächsten Zuges kann dieses Pokémon Schlitzender Schlag nicht einsetzen."
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user