mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
59
data/Scarlet & Violet/Paldean Fates/052.ts
Normal file
59
data/Scarlet & Violet/Paldean Fates/052.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Grapploct",
|
||||
fr: "Krakos",
|
||||
es: "Grapploct",
|
||||
it: "Grapploct",
|
||||
pt: "Grapploct"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Slow-Acting Syncope",
|
||||
fr: "Syncope à Retardement",
|
||||
es: "Síncope de Acción Lenta",
|
||||
it: "Sincope Differita",
|
||||
pt: "Síncope a Conta-gotas"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "At the end of your opponent's next turn, the Defending Pokémon will be Knocked Out.",
|
||||
fr: "À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera mis K.O.",
|
||||
es: "Al final del próximo turno de tu rival, el Pokémon Defensor quedará Fuera de Combate.",
|
||||
it: "Alla fine del prossimo turno del tuo avversario, il Pokémon difensore verrà messo KO.",
|
||||
pt: "No final do próximo turno do seu oponente, o Pokémon Defensor será Nocauteado."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mach Cross",
|
||||
fr: "Passage Éclair",
|
||||
es: "Puñetazo Mach",
|
||||
it: "Incromach",
|
||||
pt: "Cruzado Veloz"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user