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:
74
data/Sword & Shield/Sword & Shield/134.ts
Normal file
74
data/Sword & Shield/Sword & Shield/134.ts
Normal 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
|
Reference in New Issue
Block a user