1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
2021-11-12 17:24:19 +01:00

71 lines
967 B
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 '../Neo Genesis'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre"
},
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"
},
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."
},
damage: "10×",
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-pierres"
},
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