1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 07:39:53 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

97 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Sword & Shield'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre",
es: "Sudowoodo",
it: "Sudowoodo",
pt: "Sudowoodo",
de: "Mogelbaum"
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Double Draw",
fr: "Double Pioche",
es: "Roba Doble",
it: "Pescata Doppia",
pt: "Compra Dupla",
de: "Zweifachzug"
},
effect: {
en: "Draw 2 cards.",
fr: "Piochez 2 cartes.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Flail",
fr: "Gigotage",
es: "Azote",
it: "Flagello",
pt: "Mangual",
de: "Dreschflegel"
},
effect: {
en: "This attack does 10 damage for each damage counter on this Pokémon.",
fr: "Cette attaque inflige 10 dégâts pour chaque marqueur de dégâts sur ce Pokémon.",
es: "Este ataque hace 10 puntos de daño por cada contador de daño en este Pokémon.",
it: "Questo attacco infligge 10 danni per ogni segnalino danno presente su questo Pokémon.",
pt: "Este ataque causa 10 pontos de dano para cada contador de dano neste Pokémon.",
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte zu."
},
damage: "10×",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "If a tree branch shakes when there is no wind, its a Sudowoodo, not a tree. It hides from the rain."
}
}
export default card