mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
67 lines
1.1 KiB
TypeScript
67 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Burning Shadows'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Oddish",
|
||
fr: "Mystherbe",
|
||
es: "Oddish",
|
||
it: "Oddish",
|
||
pt: "Oddish",
|
||
de: "Myrapla"
|
||
},
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
43,
|
||
],
|
||
hp: 50,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Poison Powder",
|
||
fr: "Poudre Toxik",
|
||
es: "Polvo Veneno",
|
||
it: "Velenpolvere",
|
||
pt: "Pó Venenoso",
|
||
de: "Giftpuder"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
|
||
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
|
||
},
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|