1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

103 lines
1.7 KiB
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 '../Darkness Ablaze'
const card: Card = {
dexId: [512],
name: {
en: "Simisage",
fr: "Feuiloutan",
es: "Simisage",
it: "Simisage",
pt: "Simisage",
de: "Vegichita"
},
illustrator: "Hasegawa Saki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Pansage",
fr: "Feuillajou",
es: "Pansage",
it: "Pansage",
pt: "Pansage",
de: "Vegimak"
},
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Seed Bomb",
fr: "Canon Graine",
es: "Bomba Germen",
it: "Semebomba",
pt: "Bomba de Sementes",
de: "Samenbomben"
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Giga Impact",
fr: "Giga Impact",
es: "Gigaimpacto",
it: "Gigaimpatto",
pt: "Gigaimpacto",
de: "Gigastoß"
},
effect: {
en: "During your next turn, this Pokémon can't attack.",
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
},
damage: 110,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Ill tempered, it fights by swinging its barbed tail around wildly. The leaf growing on its head is very bitter."
}
}
export default card