1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

81 lines
1.3 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/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "dpp-DP31",
localId: "DP31",
// Card informations
name: {
en: "Heatran",
},
hp: 120,
type: [
Type.FIRE,
],
dexId: 485,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dpp/DP31/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 17,
name: "Shizurow"
},
abilities: [{
id: 835,
type: AbilityType.POKEBODY,
name: {
en: "Heat Metal",
},
text: {
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.",
}
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "DP Black Star Promos",
code: "dpp"
}
}
export default card