1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 12:41:59 +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

102
cards/sm/sm75/5.ts Normal file
View File

@@ -0,0 +1,102 @@
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: "sm75-5",
localId: 5,
// Card informations
name: {
en: "Combusken",
fr: "Galifeu",
},
hp: 80,
type: [
Type.FIRE,
],
dexId: 256,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm75/5/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm75/5/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm75/5/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm75/5/high.png",
},
},
evolveFrom: {
en: "Torchic",
fr: "Poussifeu",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
abilities: [{
id: 22,
type: AbilityType.TALENT,
name: {
en: "Natural Cure",
fr: "Remède Naturel",
},
text: {
en: "Whenever you attach an Energy card from your hand to this Pokémon, remove all Special Conditions from it.",
fr: "Chaque fois que vous attachez une carte Énergie de votre main à ce Pokémon, retirez tous les États Spéciaux de ce Pokémon.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lunge",
fr: "Coup Rapide",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si cest pile, cette attaque ne fait rien.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dragon Majesty",
code: "sm75"
}
}
export default card