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

44 lines
737 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: "Tinkatuff"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
id: "Gunung rongsokan logam adalah sarangnya. Untuk menguji kekuatan palunya, para Tinkatuff saling memukul satu sama lain dengan kencang."
},
stage: "Stage1",
attacks: [{
name: {
id: "Ayunan Logam Paduan"
},
effect: {
id: "Jika Pokémon ini mengenakan Energi {Logam}, kerusakan yang diberikan bertambah sejumlah 40."
},
damage: "20+",
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card