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

108
cards/bw/bw3/82.ts Normal file
View File

@ -0,0 +1,108 @@
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: "bw3-82",
localId: 82,
// Card informations
name: {
en: "Bisharp",
fr: "Scalproie",
},
hp: 100,
type: [
Type.METAL,
],
dexId: 625,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw3/82/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw3/82/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw3/82/high.png",
},
},
evolveFrom: {
en: "Pawniard",
fr: "Scalpion",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Energy Stream",
fr: "Courant d'Énergie",
},
text: {
en: "Attach a Metal Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie Metal de votre pile de défausse à ce Pokémon.",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Metal Scissors",
fr: "Ciseaux d'Acier",
},
text: {
en: "Does 20 more damage for each Metal Energy attached to this Pokémon.",
fr: "Inflige 20 dégâts supplémentaires pour chaque Énergie Metal attachée à ce Pokémon.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Noble Victories",
code: "bw3"
}
}
export default card