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

99
cards/hgss/hgss1/106.ts Normal file
View File

@@ -0,0 +1,99 @@
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: "hgss1-106",
localId: 106,
// Card informations
name: {
en: "Blissey",
fr: "Leuphorie",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 242,
image: {
low: {
en: "https://assets.tcgdex.net/en/hgss/hgss1/106/low.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/106/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/hgss/hgss1/106/high.png",
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/106/high.png",
},
},
evolveFrom: {
en: "Chansey",
fr: "Leveinard",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 63,
name: "Noriko Hotta"
},
abilities: [{
id: 1032,
type: AbilityType.POKEPOWER,
name: {
en: "Blissful Nurse",
fr: "Infirmière divine",
},
text: {
en: "Once during your turn, when you play Blissey from your hand to evolve 1 of your Pokémon, you may remove all damage counters from all of your Pokémon. If you do, discard all Energy attached to those Pokémon that had any damage counters on them.",
fr: "Une seule fois pendant votre tour, lorsque vous jouez Leuphorie dans votre main pour faire évoluer lun de vos Pokémon, vous pouvez retirer tous les marqueurs de dégâts de tous vos Pokémon. Dans ce cas, défaussez-vous de toutes les énergies attachées aux Pokémon qui avaient des marqueurs de dégâts.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Strength",
fr: "Force",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RarePrime,
category: Category.POKEMON,
set: {
name: "HeartGold & SoulSilver",
code: "hgss1"
}
}
export default card