mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Lost Origin"
|
|
|
|
const card: Card = {
|
|
dexId: [185],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sudowoodo",
|
|
fr: "Simularbre",
|
|
es: "Sudowoodo",
|
|
it: "Sudowoodo",
|
|
pt: "Sudowoodo",
|
|
de: "Mogelbaum"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fighting"],
|
|
|
|
name: {
|
|
en: "Joust",
|
|
fr: "Joute",
|
|
es: "Justa",
|
|
it: "Giostra",
|
|
pt: "Justar",
|
|
de: "Lanzenstich"
|
|
},
|
|
|
|
effect: {
|
|
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon.",
|
|
fr: "Avant d'infliger des dégâts, défaussez tous les Outils Pokémon du Pokémon Actif de votre adversaire.",
|
|
es: "Antes de infligir daño, descarta todas las Herramientas Pokémon del Pokémon Activo de tu rival.",
|
|
it: "Prima di infliggere danni, scarta tutte le carte Oggetto Pokémon dal Pokémon attivo del tuo avversario.",
|
|
pt: "Antes de causar dano, descarte todas as Ferramentas Pokémon do Pokémon Ativo do seu oponente.",
|
|
de: "Bevor du Schaden zufügst, lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Fighting", "Colorless"],
|
|
|
|
name: {
|
|
en: "Impound",
|
|
fr: "Confiscation",
|
|
es: "Confiscar",
|
|
it: "Isolamento",
|
|
pt: "Apreensão",
|
|
de: "Festsetzen"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
|
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
|
|
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
|
|
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
|
|
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
|
|
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
"normal": true,
|
|
"reverse": true,
|
|
"holo": false
|
|
}
|
|
}
|
|
|
|
export default card |