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

106
cards/bw/bwp/BW51.ts Normal file
View File

@ -0,0 +1,106 @@
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: "bwp-BW51",
localId: "BW51",
// Card informations
name: {
en: "Crobat",
fr: "Nostenfer",
},
hp: 130,
type: [
Type.PSYCHIC,
],
dexId: 169,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW51/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW51/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bwp/BW51/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bwp/BW51/high.png",
},
},
evolveFrom: {
en: "Golbat",
fr: "Nosferalto",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1025,
type: AbilityType.TALENT,
name: {
en: "Night Sight",
fr: "Vision de Nuit",
},
text: {
en: "Once during your turn (before your attack), you may draw a card.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ultra-Toxic Fang",
fr: "Croc Ultratoxik",
},
text: {
en: "The Defending Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon between turns.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu d'un sur le Pokémon ciblé entre chaque tour.",
},
damage: 40
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "BW Black Star Promos",
code: "bwp"
}
}
export default card