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

67 lines
2.2 KiB
TypeScript
Raw Permalink 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "デデンネex",
'zh-tw': "咚咚鼠ex",
th: "เดเด็นเนะex",
id: "Dedenne ex"
},
illustrator: "aky CG Works",
rarity: "Double rare",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Psychic", "Psychic"],
name: {
ja: "テールスワップ",
'zh-tw': "長尾置換",
th: "หางสลับ",
id: "Tail Swap"
},
effect: {
ja: "自分のベンチポケモンを1匹選び、選んだポケモンにのっているダメカンをすべて、相手のバトルポケモンにのせ替える。",
'zh-tw': "選擇1隻自己的備戰寶可夢將所選的寶可夢身上放置的傷害指示物全部改放於對手的戰鬥寶可夢身上。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายเรา 1 ตัว ย้ายตัวนับแดเมจที่วางอยู่บนโปเกมอนที่เลือกทั้งหมด ไปวางที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม",
id: "Pilih 1 Pokémon Cadangan sendiri, lalu pindahkan semua Token Kerusakan yang dimiliki Pokémon yang telah dipilih ke Pokémon Bertarung lawan."
}
}, {
cost: ["Psychic", "Psychic", "Psychic"],
name: {
ja: "ワンダーショット",
'zh-tw': "奇跡射擊",
th: "วันเดอร์ช็อต",
id: "Wonder Shot"
},
damage: 170,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
id: "Pilih 1 Energi yang dikenakan pada Pokémon ini, lalu buang ke Trash."
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card