1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 16:31:58 +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

93
cards/pop/pop5/16.ts Normal file
View File

@@ -0,0 +1,93 @@
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: "pop5-16",
localId: 16,
// Card informations
name: {
en: "Espeon Star",
},
hp: 70,
type: [
Type.PSYCHIC,
],
dexId: 196,
image: {
low: {
en: "https://assets.tcgdex.net/en/pop/pop5/16/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pop/pop5/16/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
abilities: [{
id: 457,
type: AbilityType.POKEPOWER,
name: {
en: "Purple Ray",
},
text: {
en: "Once during your turn, when you put Espeon * from your hand onto your Bench, you may use this power. Each Active Pokémon (both yours and your opponent's) is now Confused.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psychic Boom",
},
text: {
en: "Does 30 damage plus 10 more damage for each Energy attached to the Defending Pokémon.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "POP Series 5",
code: "pop5"
}
}
export default card