1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

83 lines
1.7 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Bisharp",
fr: "Scalproie",
es: "Bisharp",
it: "Bisharp",
pt: "Bisharp",
de: "Caesurio"
},
illustrator: "tetsuya koizumi",
rarity: "Uncommon",
category: "Pokemon",
hp: 110,
types: ["Metal"],
evolveFrom: {
en: "Pawniard",
fr: "Scalpion"
},
attacks: [{
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
en: "Steel Slice",
fr: "Acier Tranché",
es: "Tajo Acerado",
it: "Tagliacciaio",
pt: "Fatiar Aço",
de: "Stahlschnitt"
},
effect: {
en: "If your opponents 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.",
es: "Si el Pokémon Activo de tu rival es un Pokémon Metal, este ataque hace 90 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è di tipo Metal, questo attacco infligge 90 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Metal, este ataque causará 90 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Metal-Pokémon ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card