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

106
cards/sm/sm10/70.ts Normal file
View File

@ -0,0 +1,106 @@
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: "sm10-70",
localId: 70,
// Card informations
name: {
en: "Gengar",
fr: "Ectoplasma",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 94,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/70/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/70/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/70/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/70/high.png",
},
},
evolveFrom: {
en: "Haunter",
fr: "Spectrum",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 143,
name: "so-taro"
},
abilities: [{
id: 440,
type: AbilityType.TALENT,
name: {
en: "Shadow Pain",
fr: "Douleur Ombre",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put 6 damage counters on your opponent's Pokémon-GX and Pokémon-EX in any way you like.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez placer 6 marqueurs de dégâts sur les Pokémon-GX et Pokémon-EX de votre adversaire, de la manière que vous voulez.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Twilight Poison",
fr: "Poison Nocturne",
},
text: {
en: "Your opponent's Active Pokémon is now Asleep and Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné et Endormi.",
},
damage: 70
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card