1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

70 lines
894 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: "Kabuto",
fr: "Kabuto",
es: "Kabuto",
it: "Kabuto",
pt: "Kabuto",
de: "Kabuto"
},
illustrator: "MAHOU",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
140,
],
hp: 80,
types: [
"Fighting",
],
stage: "RESTORED",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Mud Shot",
fr: "Tir de Boue",
es: "Disparo Lodo",
it: "Colpodifango",
pt: "Água Viscosa",
de: "Lehmschuss"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
evolveFrom: {
en: "Dome Fossil Kabuto",
fr: "Fossile Dôme Kabuto",
es: "Fósil Domo Kabuto",
it: "Domofossile di Kabuto",
pt: "Fóssil Cúpula de Kabuto",
de: "Domfossil Kabuto"
}
}
export default card