mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
80 lines
1.7 KiB
TypeScript
80 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Expedition Base Set'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Typhlosion",
|
||
fr: "Typhlosion",
|
||
de: "Tornupto"
|
||
},
|
||
illustrator: "Hiroaki Ito",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
157,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Quilava",
|
||
},
|
||
stage: "Stage2",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Quick Attack",
|
||
fr: "Vive-attaque",
|
||
de: "Ruckzuckhieb"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires.",
|
||
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff 10 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Fire",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thermal Blast",
|
||
fr: "Rafale thermique",
|
||
de: "Wärmewelle"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Benched Pokémon, if any. (Don't apply Weakness and Resistance for Benched Pokémon.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts à chaque Pokémon du Banc de votre adversaire, s'il en possède. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
|
||
de: "Wirf eine Münze. Bei \"Kopf\" fügt dieser Angriff jedem Pokémon auf der gegnerischen Bank 10 Schadenspunkte zu, falls vorhanden. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|