mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
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 |