1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +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,69 @@
import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Heatran",
fr: "Heatran",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
485,
],
hp: 100,
types: [
"Metal",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Smelt",
fr: "Fondre",
},
effect: {
en: "Once during your turn (before your attack), you may move a Metal Energy attached to 1 of your Pokémon to Heatran. This power can't be used if Heatran is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez déplacer sur Heatran une Énergie Metal attachée à 1 de vos Pokémon. Ce pouvoir ne peut pas être utilisé si Heatran est affecté par un État Spécial.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Heavy Metal",
fr: "Heavy Métal",
},
effect: {
en: "Flip a coin for each Metal Energy attached to Heatran. This attack does 40 damage plus 20 more damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie Metal attachée à Heatran. Cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires pour chaque face.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card