1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00

78 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Bisharp",
fr: "Scalproie",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
625,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Pawniard",
fr: "Scalpion",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Single Lunge",
fr: "Allongement Simple",
},
effect: {
en: "If this Pokémon has no damage counters on it, this attack does 90 more damage.",
fr: "Si ce Pokémon na pas de marqueur de dégâts, cette attaque inflige 90 dégâts supplémentaires.",
},
damage: 30,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Power Edge",
fr: "Lame Puissante",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card