1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Yellow A Alternate'
const card: Card = {
name: {
en: "Sudowoodo",
fr: "Simularbre",
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
185,
],
hp: 100,
types: [
"Fightning",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Roadblock",
fr: "Barrage Routier",
},
effect: {
en: "Your opponent can't have more than 4 Benched Pokémon. If they have 5 or more Benched Pokémon, they discard Benched Pokémon until they have 4 Pokémon on the Bench. If more than one effect changes the number of Benched Pokémon allowed, use the smaller number.",
fr: "Votre adversaire ne peut pas avoir plus de 4 Pokémon de Banc. Sil a 5 Pokémon de Banc ou plus, il doit défausser des Pokémon de Banc jusquà en avoir 4 sur le Banc. Si plus dun effet change le nombre de Pokémon de Banc autorisés, utilisez le nombre le plus petit.",
},
},
],
attacks: [
{
cost: [
"Fightning",
"Colorless",
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card