1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-21 03:29:17 +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/bw/bw8/70.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: "bw8-70",
localId: 70,
// Card informations
name: {
en: "Beheeyem",
fr: "Neitram",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 606,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw8/70/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/70/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw8/70/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw8/70/high.png",
},
},
evolveFrom: {
en: "Elgyem",
fr: "Lewsor",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Lock Up",
fr: "Cage",
},
text: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Damakinesis",
fr: "Dégâkinésie",
},
text: {
en: "Move 6 damage counters from any of your Pokémon to the Defending Pokémon.",
fr: "Déplacez 6 marqueurs de dégâts de vos Pokémon vers le Pokémon Défenseur.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Storm",
code: "bw8"
}
}
export default card