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

104
cards/xy/xy3/36.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: "xy3-36",
localId: 36,
// Card informations
name: {
en: "Hypno",
fr: "Hypnomade",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 97,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy3/36/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/36/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy3/36/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy3/36/high.png",
},
},
evolveFrom: {
en: "Drowzee",
fr: "Soporifik",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 49,
name: "Shigenori Negishi"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Hand Control",
fr: "Main Contrôlée",
},
text: {
en: "Your opponent reveals his or her hand. You may choose a Supporter card you find there. If you do, your opponent plays that Supporter card. However, you make all decisions for that card. (That Supporter card is discarded.)",
fr: "Votre adversaire montre sa main. Vous pouvez choisir une carte Supporter que vous y trouvez. Dans ce cas, votre adversaire joue la carte Supporter. Cependant, vous prenez toutes les décisions relatives à la carte. (La carte Supporter est défaussée.)",
},
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Hypnoblast",
fr: "Hypnoblast",
},
text: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Furious Fists",
code: "xy3"
}
}
export default card