1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

54 lines
1.2 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 '../Stormfront'
const card: Card = {
name: {
en: "Heatran",
fr: "Heatran"
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
485,
],
hp: 120,
types: [
"Fire",
],
evolveFrom: {
fr: "Heatran LV.X",
},
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Heat Metal",
fr: "Chaleur métallique",
},
effect: {
en: "Your opponent can't remove the Special Condition Burned by evolving or devolving his or her Burned Pokémon. (This also includes putting a Pokémon Level-Up card onto the Burned Pokémon.) Whenever your opponent flips a coin for the Special Condition Burned between turns, treat it as tails.",
fr: "Votre adversaire ne peut retirer l'État Spécial Brûlé en évoluant ou dés-évoluant son Pokémon Brûlé. (Cela comprend placer une Carte Pokémon Niveau Sup sur le Pokémon Brûlé.) Lorsque votre adversaire lance une pièce pour l'État Spécial Brûlé entre deux tours, considérez que c'est pile.",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 4,
}
export default card