1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

105
cards/sm/sm7/98.ts Normal file
View File

@ -0,0 +1,105 @@
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: "sm7-98",
localId: 98,
// Card informations
name: {
en: "Heatran",
fr: "Heatran",
},
hp: 130,
type: [
Type.METAL,
],
dexId: 485,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm7/98/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/98/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm7/98/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm7/98/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Steelworks",
fr: "Aciérie",
},
text: {
en: "Look at the top 4 cards of your deck and attach any number of Metal Energy cards you find there to 1 of your Pokémon. Shuffle the other cards back into your deck.",
fr: "Regardez les 4 cartes du dessus de votre deck et attachez le nombre désiré de cartes Énergie Metal que vous y trouverez à lun de vos Pokémon. Mélangez les autres cartes avec votre deck.",
},
},{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Steel Tackle",
fr: "Charge dAcier",
},
text: {
en: "This Pokémon does 30 damage to itself.",
fr: "Ce Pokémon sinflige 30 dégâts.",
},
damage: 120
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 3,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Celestial Storm",
code: "sm7"
}
}
export default card