1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 04:46: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

42 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sun & Moon'
const card: Card = {
name: {
en: "Professor Kukui",
fr: "Prof. Euphorbe",
es: "Profesor Kukui",
it: "Professor Kukui",
pt: "Professor Nogueira",
de: "Prof. Kukui"
},
illustrator: "Megumi Mizutani",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Piochez 2 cartes. Pendant ce tour, les attaques de vos Pokémon infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance).",
en: "Draw 2 cards. During this turn, your Pokémons attacks do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
es: "Roba 2 cartas. Durante este turno, los ataques de tus Pokémon hacen 20 puntos de daño más al Pokémon Activo de tu rival (antes de aplicar Debilidad y Resistencia).",
it: "Pesca due carte. Durante questo turno, gli attacchi dei tuoi Pokémon infliggono 20 danni in più al Pokémon attivo del tuo avversario, prima di aver applicato debolezza e resistenza.",
pt: "Compre 2 cartas. Durante esta rodada, os ataques dos seus Pokémon causam 20 pontos de dano a mais ao Pokémon Ativo do seu oponente (antes de aplicar Fraqueza e Resistência).",
de: "Ziehe 2 Karten. Während dieses Zuges fügen die Attacken deiner Pokémon dem Aktiven Pokémon deines Gegners 20 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
trainerType: "Supporter",
}
export default card