1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

104
cards/ecard/ecard3/145.ts Normal file
View File

@ -0,0 +1,104 @@
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: "ecard3-145",
localId: 145,
// Card informations
name: {
en: "Celebi",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 251,
image: {
low: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/145/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ecard/ecard3/145/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
abilities: [{
id: 1295,
type: AbilityType.POKEBODY,
name: {
en: "Crystal Type",
},
text: {
en: "Whenever you attach a Grass, Water, or Psychic basic Energy card from your hand to Celebi, Celebi's type (color) becomes the same as that type of energy until the end of the turn.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.WATER
],
name: {
en: "Empathetic Healing",
},
text: {
en: "Remove 2 damage counters from Celebi and each Pokémon that's the same type (color) as Celebi.",
},
},{
cost: [
Type.GRASS,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Mind Bend",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Skyridge",
code: "ecard3"
}
}
export default card