1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00
Files
cards-database/data/XY/Fates Collide/75.ts

81 lines
1013 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Fates Collide'
const card: Card = {
name: {
en: "Kangaskhan",
fr: "Kangourex",
es: "Kangaskhan",
it: "Kangaskhan",
pt: "Kangaskhan",
de: "Kangama"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
115,
],
hp: 120,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tiny Punch",
fr: "Ptit Coup dPoing",
es: "Minipuño",
it: "Micropugno",
pt: "Soco Bebê",
de: "Mickriger Hieb"
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Mega Punch",
fr: "Ultimapoing",
es: "Megapuño",
it: "Megapugno",
pt: "Mega Soco",
de: "Megahieb"
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 3,
}
export default card