1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

61 lines
698 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,
}
export default card