mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 18:27:51 +00:00
* Update Signed-off-by: Avior <github@avior.me> * Update datas Signed-off-by: Avior <github@avior.me> * Finished fix Signed-off-by: Avior <github@avior.me> * Updated some more Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more updates Signed-off-by: Avior <florian.bouillon@delta-wings.net>
87 lines
1.1 KiB
TypeScript
87 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../HeartGold SoulSilver'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Typhlosion",
|
||
fr: "Typhlosion",
|
||
},
|
||
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
157,
|
||
],
|
||
|
||
hp: 130,
|
||
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Quilava",
|
||
fr: "Fleurisson",
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Magma Punch",
|
||
fr: "Poing magma",
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fire Spin",
|
||
fr: "Danseflamme",
|
||
},
|
||
effect: {
|
||
en: "Discard 2 Energy attached to Typhlosion.",
|
||
fr: "Défaussez-vous de 2 cartes Énergie attachées à Typhlosion.",
|
||
},
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "It has a secret, devastating move. It rubs its blazing fur together to cause huge explosions."
|
||
},
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
}
|
||
}
|
||
|
||
export default card
|