1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 02:42:09 +00:00

55 lines
1.4 KiB
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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Dedenne",
th: "เดเด็นเนะ"
},
illustrator: "Uninori",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
id: "Dedenne memancarkan sinyal dari kumis di pipinya dan berkomunikasi dengan kawannya. Pokémon ini membulat dan tertidur jika listriknya berkurang.",
th: "ปล่อยคลื่นไฟฟ้าจากหนวดที่แก้มเพื่อติดต่อสื่อสารกับพวกพ้อง พอไฟฟ้า ลดลงจะนอนขดตัวกลม"
},
stage: "Basic",
attacks: [{
name: {
id: "Sonar Elektromagnetik",
th: "โซนาร์แม่เหล็กไฟฟ้า"
},
effect: {
id: "Pilih 1 lembar Trainer dari Trash sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan.",
th: "เลือกการ์ดเทรนเนอร์ 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ"
},
cost: ["Colorless"]
}, {
name: {
id: "Menggerogot",
th: "แทะ"
},
damage: 30,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card