1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

50 lines
795 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Togetic"
},
illustrator: "Kyoko Umemoto",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
id: "Togetic akan menjadi tidak sehat jika tidak berada di samping orang yang lemah lembut hatinya. Pokémon ini dapat mengambang di udara tanpa menggerakkan sayap."
},
stage: "Stage1",
attacks: [{
name: {
id: "Share Peace"
},
effect: {
id: "Kedua pemain masing-masing mengambil 3 kartu dari atas Deck."
},
cost: ["Colorless"]
}, {
name: {
id: "Terbang Cepat"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card