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

99 lines
1.8 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 '../XY'
const card: Card = {
name: {
en: "Simisear",
fr: "Flamoutan",
es: "Simisear",
it: "Simisear",
pt: "Simisear",
de: "Grillchita"
},
illustrator: "sui",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
514,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Pansear",
fr: "Flamajou",
es: "Pansear",
it: "Pansear",
pt: "Pansear",
de: "Grillmak"
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Yawn",
fr: "Bâillement",
es: "Bostezo",
it: "Sbadiglio",
pt: "Bocejo",
de: "Gähner"
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Flamethrower",
fr: "Lance-Flammes",
es: "Lanzallamas",
it: "Lanciafiamme",
pt: "Lança-chamas",
de: "Flammenwurf"
},
effect: {
en: "Discard a Fire Energy attached to this Pokémon.",
fr: "Défaussez une Énergie Fire attachée à ce Pokémon.",
es: "Descarta 1 Energía Fire unida a este Pokémon.",
it: "Scarta un'Energia Fire assegnata a questo Pokémon.",
pt: "Descarte uma Energia Fire ligada a este Pokémon.",
de: "Lege 1 an dieses Pokémon angelegte Fire-Energie auf deinen Ablagestapel."
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card