1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 19:19:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

104
cards/bw/bw9/73.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: "bw9-73",
localId: 73,
// Card informations
name: {
en: "Bisharp",
fr: "Scalproie",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 625,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw9/73/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/73/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw9/73/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/73/high.png",
},
},
evolveFrom: {
en: "Pawniard",
fr: "Scalpion",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 40
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Dragon Slayer",
fr: "Dragon Slayer",
},
text: {
en: "If the Defending Pokémon is a Dragon Pokémon, this attack does 40 more damage.",
fr: "Si le Pokémon Défenseur est un Pokémon Dragon, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Freeze",
code: "bw9"
}
}
export default card