1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

94 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 '../Team Up'
const card: Card = {
name: {
en: "Bisharp",
fr: "Scalproie",
es: "Bisharp",
it: "Bisharp",
pt: "Bisharp",
de: "Caesurio"
},
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",
es: "Embestida Única",
it: "Affondo Singolo",
pt: "Estocada Única",
de: "Einzelsprung"
},
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.",
es: "Si este Pokémon no tiene ningún contador de daño sobre él, este ataque hace 90 puntos de daño más.",
it: "Se questo Pokémon non ha dei segnalini danno, questo attacco infligge 90 danni in più.",
pt: "Se este Pokémon não tiver nenhum contador de dano nele, este ataque causará 90 pontos de dano a mais.",
de: "Wenn auf diesem Pokémon keine Schadensmarken liegen, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "30+",
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Power Edge",
fr: "Lame Puissante",
es: "Filo Poderoso",
it: "Colpotente",
pt: "Gume Poderoso",
de: "Kraftklinge"
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card