1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-13 21:35:10 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Bisharp",
fr: "Scalproie",
},
illustrator: "kawayoo",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Metal",
],
evolveFrom: {
en: "Pawniard",
fr: "Scalpion",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Charge Order",
fr: "Ordre de Charge",
},
effect: {
en: "This attack does 30 more damage for each of your Benched Pawniard.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Scalpion sur votre Banc.",
},
damage: "30+",
},
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Slicing Blade",
fr: "Lame Tranchante",
},
damage: 60,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 2,
}
export default card