mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
63 lines
1.5 KiB
TypeScript
63 lines
1.5 KiB
TypeScript
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",
|
|
de: "Irokex"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Darkness"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Lambaste",
|
|
fr: "Étrillage",
|
|
es: "Vapuleo",
|
|
it: "Strigliata",
|
|
pt: "Desancar",
|
|
de: "Zurechtweisen"
|
|
},
|
|
|
|
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.",
|
|
de: "Wenn das Verteidigende Pokémon ein Basis-Pokémon ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
|
|
},
|
|
|
|
damage: 30
|
|
}, {
|
|
cost: ["Darkness", "Darkness", "Colorless"],
|
|
|
|
name: {
|
|
en: "Headbang",
|
|
fr: "Frappe de Tête",
|
|
es: "Cabecear",
|
|
it: "Scuotitesta",
|
|
pt: "Baque de Cabeça",
|
|
de: "Headbangen"
|
|
},
|
|
|
|
damage: 130
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |