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

103
cards/sm/sm12/56.ts Normal file
View File

@ -0,0 +1,103 @@
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: "sm12-56",
localId: 56,
// Card informations
name: {
en: "Empoleon",
fr: "Pingoléon",
},
hp: 160,
type: [
Type.WATER,
],
dexId: 395,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm12/56/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/56/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm12/56/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm12/56/high.png",
},
},
evolveFrom: {
en: "Prinplup",
fr: "Prinplouf",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Recall",
fr: "Récupération",
},
text: {
en: "Choose an attack from 1 of this Pokémon's previous Evolutions and use it as this attack.",
fr: "Choisissez une attaque de lune des précédentes Évolutions de ce Pokémon et utilisez-la en tant que cette attaque.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Aquafall",
fr: "Aquasplash",
},
text: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
},
damage: 130
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Cosmic Eclipse",
code: "sm12"
}
}
export default card