mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-05 13:09:53 +00:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Giovanni",
|
|
fr: "Giovanni",
|
|
es: "Giovanni",
|
|
it: "Giovanni",
|
|
de: "Giovanni",
|
|
'pt-br': "Giovanni",
|
|
ko: "비주기"
|
|
},
|
|
|
|
illustrator: "Hideki Ishikawa",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, attacks used by your Pokémon do +10 damage to your opponent's Active Pokémon.",
|
|
fr: "Pendant ce tour, les attaques de vos Pokémon infligent + 10 dégâts au Pokémon Actif de votre adversaire.",
|
|
es: "Durante este turno, los ataques de tus Pokémon hacen 10+10 puntos de daño al Pokémon Activo de tu rival.",
|
|
it: "Durante questo turno, gli attacchi usati dai tuoi Pokémon infliggono +10 danni al Pokémon attivo del tuo avversario.",
|
|
de: "Während dieses Zuges fügen die Attacken deiner Pokémon dem Aktiven Pokémon deines Gegners + 10 Schadenspunkte zu.",
|
|
'pt-br': "Durante este turno, os ataques usados pelos seus Pokémon causam +10 pontos de dano ao Pokémon Ativo do seu oponente.",
|
|
ko: "이 차례에 자신의 포켓몬이 사용하는 기술이 상대의 배틀 포켓몬에게 주는 데미지를 +10한다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
rarity: "Two Diamond",
|
|
boosters: ["mewtwo"]
|
|
}
|
|
|
|
export default card
|