mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-01 00:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/HeartGold & SoulSilver/HeartGold SoulSilver/36.ts
Normal file
75
data/HeartGold & SoulSilver/HeartGold SoulSilver/36.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../HeartGold SoulSilver'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Blissey",
|
||||
fr: "Leuphorie",
|
||||
},
|
||||
illustrator: "Kanako Eo",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
242,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Chansey",
|
||||
fr: "Leveinard",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Energy Link",
|
||||
fr: "Chaîne d’énergie",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your discard pile for an Energy card and attach it to Blissey.",
|
||||
fr: "Cherchez dans votre pile de défausse une carte Énergie et attachez-la à Leuphorie.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Double-edge",
|
||||
fr: "Damoclès",
|
||||
},
|
||||
effect: {
|
||||
en: "Blissey does 40 damage to itself.",
|
||||
fr: "Leuphorie s’inflige 40 dégâts.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user