1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

75 lines
1.1 KiB
TypeScript
Raw Permalink 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 '../Neo Genesis'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre",
de: "Mogelbaum"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
185,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Flail",
fr: "Fleau",
de: "Dreschflegel"
},
effect: {
en: "Does 10 damage times the number of damage counters on Sudowoodo.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégâts sur Simularbre.",
de: "Fügt 10 Schadenspunkte mal der Anzahl der Schadensmarken auf Mogelbaum zu."
},
damage: "10x",
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-pierres",
de: "Steinwurf"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
description: {
fr: "Bien qu'il prétende être un arbre, il ressemble plus à un rock qu'à une plante."
}
}
export default card