mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
102 lines
1.7 KiB
TypeScript
102 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Simisear",
|
||
fr: "Flamoutan",
|
||
es: "Simisear",
|
||
it: "Simisear",
|
||
pt: "Simisear",
|
||
de: "Grillchita"
|
||
},
|
||
|
||
illustrator: "0313",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 100,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Pansear",
|
||
fr: "Flamajou",
|
||
es: "Pansear",
|
||
it: "Pansear",
|
||
pt: "Pansear",
|
||
de: "Grillmak"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Flare",
|
||
fr: "Flamboiement",
|
||
es: "Llama",
|
||
it: "Fiammata",
|
||
pt: "Chama",
|
||
de: "Flackern"
|
||
},
|
||
|
||
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: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "When it gets excited, embers rise from its head and tail and it gets hot. For some reason, it loves sweets."
|
||
}
|
||
}
|
||
|
||
export default card
|