1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

105 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "bw4-62",
localId: 62,
// Card informations
name: {
en: "Beheeyem",
fr: "Neitram",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 606,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw4/62/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw4/62/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw4/62/high.png",
},
},
evolveFrom: {
en: "Elgyem",
fr: "Lewsor",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Brain Control",
fr: "Contrôle Cérébral",
},
text: {
en: "Your opponent reveals his or her hand. Choose a card from there and put it on the bottom of your opponent's deck.",
fr: "Votre adversaire montre sa main. Choisissez-y une carte et mettez-la en dessous du deck de votre adversaire.",
},
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Psybeam",
fr: "Rafale Psy",
},
text: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
},
damage: 40
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Next Destinies",
code: "bw4"
}
}
export default card