1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
945 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Tinkaton"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
id: "Tinkaton mengayun-ayunkan palu yang beratnya melebihi 100 kilogram dengan mudahnya, lalu merebut barang yang diinginkannya dan membawanya pulang."
},
stage: "Stage2",
attacks: [{
name: {
id: "Serangan Tunggal Kehancuran"
},
effect: {
id: "Pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash."
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
id: "Palu Logam Paduan"
},
effect: {
id: "Jika Pokémon ini mengenakan Energi {Logam}, kerusakan yang diberikan bertambah sejumlah 120."
},
damage: "60+",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card