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

101
cards/ex/ex11/23.ts Normal file
View File

@ -0,0 +1,101 @@
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: "ex11-23",
localId: 23,
// Card informations
name: {
en: "Hypno",
},
hp: 70,
type: [
Type.PSYCHIC,
],
dexId: 97,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex11/23/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex11/23/high.png",
},
},
evolveFrom: {
en: "Drowzee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
abilities: [{
id: 953,
type: AbilityType.POKEBODY,
name: {
en: "Binding Aura",
},
text: {
en: "Your opponent can't play any Basic Pokémon or Evolution cards from his or her hand to evolve an Asleep Pokémon and can't attach any Energy cards from his or her hand to an Asleep Pokémon.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sleep Inducer",
},
text: {
en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch. The new Defending Pokémon is now Asleep.",
},
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psyshot",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Delta Species",
code: "ex11"
}
}
export default card