mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
35 lines
2.0 KiB
TypeScript
35 lines
2.0 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Sophocles",
|
|
fr: "Chrys",
|
|
es: "Chris",
|
|
it: "Chrys",
|
|
de: "Chrys",
|
|
'pt-br': "Chris",
|
|
ko: "마마네"
|
|
},
|
|
|
|
illustrator: "Akira Komayama",
|
|
rarity: "Two Star",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "During this turn, attacks used by your Alolan Golem, Vikavolt, or Togedemaru do +30 damage to your opponent's Active Pokémon.",
|
|
fr: "Pendant ce tour, les attaques de votre Grolem[Text:Char v=\"FOUR-PER-EM-SPACE\" ][Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ], votre Lucanon ou votre Togedemaru infligent + 30 dégâts au Pokémon Actif de votre adversaire.",
|
|
es: "Durante este turno, los ataques de tu Golem[Text:Char v=\"FOUR-PER-EM-SPACE\" ][Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ], tu Vikavolt o tu Togedemaru hacen Alolan Golem+30 puntos[/Ctrl:NoBreak] de daño al Pokémon Activo de tu rival.",
|
|
it: "Durante questo turno, gli attacchi usati dal tuo Golem[Text:Char v=\"FOUR-PER-EM-SPACE\" ][Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ], Vikavolt o Togedemaru infliggono +30 danni al Pokémon attivo dell'avversario.",
|
|
de: "Während dieses Zuges fügen die Attacken deines [Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ]Geowaz, Donarion oder Togedemaru dem Aktiven Pokémon deines Gegners + 30 Schadenspunkte zu.",
|
|
'pt-br': "Durante este turno, os ataques usados pelos seus Golem[Text:Char v=\"FOUR-PER-EM-SPACE\" ][Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ], Vikavolt ou Togedemaru causam +30 pontos de dano ao Pokémon Ativo do seu oponente.",
|
|
ko: "이 차례에 자신의 「[Text:AdditionalName v=\"ADDITIONAL_NAME_Alora\" type=\"region\" ][Text:Char v=\"FOUR-PER-EM-SPACE\" ]딱구리」「투구뿌논」「토게데마루」가 사용하는 기술이 상대의 배틀 포켓몬에게 주는 데미지를 +30한다."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
boosters: ["solgaleo"]
|
|
}
|
|
|
|
export default card |