1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

90 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Barbaracle",
fr: "Golgopathe",
es: "Barbaracle",
it: "Barbaracle",
pt: "Barbaracle",
de: "Thanathora"
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
689,
],
hp: 130,
types: [
"Fighting",
],
evolveFrom: {
en: "Binacle",
fr: "Opermine",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Seven Shock",
fr: "Choc à Sept",
es: "Impacto Siete",
it: "Eptashock",
pt: "Choque do Sete",
de: "Siebenschock"
},
effect: {
en: "If you have exactly 7 cards in your hand, your opponents Active Pokémon is now Paralyzed.",
fr: "Sil vous reste exactement 7 cartes en main, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Si tienes exactamente 7 cartas en tu mano, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Se hai esattamente sette carte in mano, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Se você tiver exatamente 7 cartas na sua mão, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wenn du genau 7 Karten auf deiner Hand hast, ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: 30,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Claw Slash",
fr: "TranchGriffe",
es: "Cuchillada Garra",
it: "Lacerartiglio",
pt: "Golpe de Garra",
de: "Klauenschlitzer"
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card