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

92
cards/pop/pop2/17.ts Normal file
View File

@@ -0,0 +1,92 @@
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: "pop2-17",
localId: 17,
// Card informations
name: {
en: "Celebi ex",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 251,
image: {
low: {
en: "https://assets.tcgdex.net/en/pop/pop2/17/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pop/pop2/17/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
abilities: [{
id: 572,
type: AbilityType.POKEPOWER,
name: {
en: "Time Reversal",
},
text: {
en: "Once during your turn, when you put Celebi ex from your hand onto your Bench, you may search your discard pile for a card, show it to your opponent, and put it on top of your deck.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psychic Shield",
},
text: {
en: "Prevent all effects of attacks, including damage, done to Celebi ex by your opponent's Pokémon",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "POP Series 2",
code: "pop2"
}
}
export default card