mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Kangaskhan",
|
||
fr: "Kangourex",
|
||
es: "Kangaskhan",
|
||
it: "Kangaskhan",
|
||
pt: "Kangaskhan",
|
||
de: "Kangama"
|
||
},
|
||
|
||
illustrator: "HYOGONOSUKE",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Colorless"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Rally Back",
|
||
fr: "Répercussions",
|
||
es: "Apoyo Vengativo",
|
||
it: "Radunata Rinforzi",
|
||
pt: "Rally Back",
|
||
de: "Aufholjagd"
|
||
},
|
||
|
||
effect: {
|
||
en: "If any of your Pokémon were Knocked Out by damage from an attack from your opponent's Pokémon during their last turn, this attack does 90 more damage.",
|
||
fr: "Si au moins l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque d'un Pokémon de votre adversaire pendant son dernier tour, cette attaque inflige 90 dégâts supplémentaires.",
|
||
es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque de los Pokémon de tu rival durante su último turno, este ataque hace 90 puntos de daño más.",
|
||
it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco di un Pokémon del tuo avversario durante il suo ultimo turno, questo attacco infligge 90 danni in più.",
|
||
pt: "If any of your Pokémon were Knocked Out by damage from an attack from your opponent's Pokémon during their last turn, this attack does 90 more damage.",
|
||
de: "Wenn mindestens 1 deiner Pokémon während des letzten Zuges deines Gegners durch Schaden einer Attacke der Pokémon deines Gegners kampfunfähig wurde, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||
},
|
||
|
||
damage: "30+",
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Hammer In",
|
||
fr: "Enfoncement",
|
||
es: "Martillear",
|
||
it: "Martello",
|
||
pt: "Hammer In",
|
||
de: "Einhämmern"
|
||
},
|
||
|
||
damage: 100,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
description: {
|
||
en: "You shouldn't get close to the child when it's playing outside its mother's pouch. Its mother is always nearby watching over it."
|
||
},
|
||
|
||
stage: "Basic",
|
||
dexId: [115],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|