1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-23 16:49:53 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

85 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre",
es: "Sudowoodo",
it: "Sudowoodo",
pt: "Sudowoodo",
de: "Mogelbaum"
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
185,
],
hp: 110,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Low Kick",
fr: "Balayage",
es: "Patada Baja",
it: "Colpo Basso",
pt: "Rasteira",
de: "Fußkick"
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Territorial Strike",
fr: "Frappe Territoriale",
es: "Golpe Territorial",
it: "Attacco Limitrofo",
pt: "Golpe Territorial",
de: "Revierschlag"
},
effect: {
en: "If you dont have a Stadium card in play, this attack does nothing.",
fr: "Si vous navez pas de carte Stade en jeu, cette attaque ne fait rien.",
es: "Si no tienes 1 carta de Estadio en juego, este ataque no hace nada.",
it: "Se non hai una carta Stadio in gioco, questo attacco non ha effetto.",
pt: "Se você não tiver uma carta de Estádio em jogo, este ataque não fará nada.",
de: "Wenn du keine Stadionkarte im Spiel hast, hat diese Attacke keine Auswirkungen."
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2
}
export default card