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

76 lines
1.1 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Simisear",
fr: "Flamoutan",
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
514,
],
hp: 90,
types: [
"Fire",
],
evolveFrom: {
en: "Pansear",
fr: "Flamajou",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Searing Flame",
fr: "Flammes Calcinantes",
},
effect: {
en: "The Defending Pokémon is now Burned.",
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
},
damage: 20,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Flame Blast",
fr: "Explosion de Flammes",
},
effect: {
en: "Does 20 more damage for each Fire Energy attached to this Pokémon.",
fr: "Inflige 20 dégâts supplémentaires pour chaque Énergie Fire attachée à ce Pokémon.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card