1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

110
cards/sm/det1/SM195.ts Normal file
View File

@ -0,0 +1,110 @@
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: "det1-SM195",
localId: "SM195",
// Card informations
name: {
fr: "Dracaufeu-GX",
},
hp: 250,
type: [
Type.FIRE,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/sm/det1/SM195/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/sm/det1/SM195/high.png",
},
},
evolveFrom: {
fr: "Reptincel",
},
tags: [
Tag.GX,
],
illustrator: {
id: 198,
name: "Framestore"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
fr: "Destruction Enragée",
},
text: {
fr: "Défaussez les 8 cartes du dessus de votre deck. Si vous y trouvez des cartes Énergie Fire, attachez-les à ce Pokémon.",
},
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Artillerie Vapeur",
},
damage: 200
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
fr: "Flammes Effroyables-GX",
},
text: {
fr: "Défaussez une Énergie de chacun des Pokémon de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 250
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Détective Pikachu",
code: "det1"
}
}
export default card