1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00

36 lines
941 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Koga",
fr: "Koga",
es: "Koga",
it: "Koga",
de: "Koga",
'pt-br': "Koga",
ko: "독수"
},
illustrator: "Souichirou Gunjima",
category: "Trainer",
effect: {
en: "Put your Muk or Weezing in the Active Spot into your hand.",
fr: "Ajoutez votre Grotadmorv ou votre Smogogo sur le Poste Actif à votre main.",
es: "Pon a tu Muk o a tu Weezing que esté en el Puesto Activo en tu mano.",
it: "Riprendi in mano il tuo Muk o Weezing in posizione attiva.",
de: "Nimm dein Sleimok oder Smogmog in der Aktiven Position auf deine Hand.",
'pt-br': "Coloque seu Muk ou Weezing do Campo Ativo na sua mão.",
ko: "자신의 배틀필드의 「질뻐기」「또도가스」를 패로 되돌린다."
},
trainerType: "Supporter",
rarity: "Two Diamond",
boosters: ["mewtwo"]
}
export default card