1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../Unseen Forces'
const card: Card = {
name: {
en: "Typhlosion ex",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
157,
],
hp: 150,
types: [
"Fire",
],
evolveFrom: {
en: "Quilava",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Bursting Up",
},
effect: {
en: "Once during your turn, when you play Typhlosion ex from your hand to evolve 1 of your Pokémon, count the number of your opponent's Benched Pokémon. You may search your deck for up to that number of Fire Energy cards and attach them to 1 of your Fire Pokémon. Shuffle your deck afterward.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Kindle",
},
effect: {
en: "Discard an Energy card attached to Typhlosion ex and then discard an Energy card attached to the Defending Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
{
type: "Fightning",
value: "×2"
},
],
}
export default card