mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
91 lines
1.3 KiB
TypeScript
91 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../FireRed & LeafGreen'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Kangaskhan",
|
||
fr: "Kangourex",
|
||
de: "Kangama"
|
||
},
|
||
illustrator: "Naoyo Kimura",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
115,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Fetch",
|
||
fr: "Rapporte",
|
||
de: "Apportieren"
|
||
},
|
||
effect: {
|
||
en: "Draw a card.",
|
||
fr: "Piochez une carte.",
|
||
de: "Ziehe eine Karte."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Headbutt",
|
||
fr: "Coup d'boule",
|
||
de: "Kopfnuss"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "One-Two Punch",
|
||
fr: "En deux punch",
|
||
de: "Doppelhieb"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 20 dégâts supplémentaires.",
|
||
de: "Wirf 1 Münze. Bei 'Kopf' fügt dieser Angriff 30 Schadenspunkte plus 20 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|