mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
59
data/Scarlet & Violet/Paldean Fates/061.ts
Normal file
59
data/Scarlet & Violet/Paldean Fates/061.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scrafty",
|
||||
fr: "Baggaïd",
|
||||
es: "Scrafty",
|
||||
it: "Scrafty",
|
||||
pt: "Scrafty"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Lambaste",
|
||||
fr: "Étrillage",
|
||||
es: "Vapuleo",
|
||||
it: "Strigliata",
|
||||
pt: "Desancar"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn.",
|
||||
fr: "Si le Pokémon Défenseur est un Pokémon de base, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
|
||||
es: "Si el Pokémon Defensor es un Pokémon Básico, no puede atacar durante el próximo turno de tu rival.",
|
||||
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon Base.",
|
||||
pt: "Se o Pokémon Defensor for um Pokémon Básico, ele não poderá atacar durante o próximo turno do seu oponente."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Headbang",
|
||||
fr: "Frappe de Tête",
|
||||
es: "Cabecear",
|
||||
it: "Scuotitesta",
|
||||
pt: "Baque de Cabeça"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user