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

92 lines
2.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 '../Burning Shadows'
const card: Card = {
name: {
en: "Bruxish",
fr: "Denticrisse",
es: "Bruxish",
it: "Bruxish",
pt: "Bruxish",
de: "Knirfish"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
779,
],
hp: 100,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Gnash Teeth",
fr: "Grincedent",
es: "Dientes Rechinantes",
it: "Sfregadenti",
pt: "Ranger Dentes",
de: "Knirschzahn"
},
effect: {
en: "Your opponents Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Synchronoise",
fr: "Synchropeine",
es: "Sincrorruido",
it: "Sincrumore",
pt: "Barulho Sincronizado",
de: "Synchrolärm"
},
effect: {
en: "This attack does 20 damage to each of your opponents Benched Pokémon that shares a type with your opponents Active Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 20 dégâts à chaque Pokémon de Banc de votre adversaire ayant un type en commun avec le Pokémon Actif de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 20 puntos de daño a cada uno de los Pokémon en Banca de tu rival que tenga un mismo tipo que el Pokémon Activo de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 20 danni a ciascun Pokémon nella panchina del tuo avversario che condivide un tipo con il Pokémon attivo del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 20 pontos de dano a cada um dos Pokémon no Banco do seu oponente que compartilha um tipo com o Pokémon Ativo do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt jedem Pokémon auf der Bank deines Gegners, das denselben Typ wie das Aktive Pokémon deines Gegners hat, 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card