mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
59
data/Sword & Shield/Battle Styles/104.ts
Normal file
59
data/Sword & Shield/Battle Styles/104.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bisharp",
|
||||
fr: "Scalproie"
|
||||
},
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawniard",
|
||||
fr: "Scalpion"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Steel Slice",
|
||||
fr: "Acier Tranché"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If your opponent’s Active Pokémon is a Metal Pokémon, this attack does 90 more damage.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Metal, cette attaque inflige 90 dégâts supplémentaires."
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Metal", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user