1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

70 lines
2.6 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: "サザンドラ",
'zh-tw': "三首惡龍",
th: "ซาซันดรา",
id: "Hydreigon"
},
illustrator: "Teeziro",
rarity: "Rare",
category: "Pokemon",
dexId: [635],
hp: 180,
types: ["Darkness"],
description: {
ja: "本体の 頭のみが 脳を 持っている。 知性は 高いが 破壊のことしか 考えていない。",
'zh-tw': "只有本體上的頭才有大腦。雖然智力很高, 但卻滿腦子只想著要破壞。",
th: "เฉพาะหัวหลักเท่านั้นที่มีสมอง ฉลาดหลักแหลมมากแต่คิดแต่เรื่องทำลายล้าง",
id: "Hanya kepala utama Hydreigon yang memiliki otak. Walaupun kecerdasannya tinggi, Pokémon ini hanya berpikir untuk menghancurkan segalanya."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "トライハウル",
'zh-tw': "三重嚎鳴",
th: "ไตรคำราม",
id: "Trihowl"
},
effect: {
ja: "自分の番に1回使える。自分の山札を上から3枚見て、その中からエネルギーを好きなだけ選び、自分のポケモンに好きなようにつける。残りのカードはトラッシュする。",
'zh-tw': "在自己的回合時可使用1次。查看自己的牌庫上方3張卡從其中選擇任意數量的能量卡以任意方式附於自己的寶可夢身上。將剩餘卡丟棄。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ดูการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงานจากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนฝ่ายเราตามชอบ ทิ้งการ์ดที่เหลือที่ตำแหน่งทิ้งการ์ด",
id: "Dapat digunakan 1 kali pada giliran sendiri. Lihat 3 kartu dari atas Deck sendiri, pilih sesukanya Energi di antaranya, lalu kenakan sesukanya pada Pokémon sendiri. Buang sisa kartu ke Trash."
}
}],
attacks: [{
cost: ["Darkness", "Darkness", "Colorless"],
name: {
ja: "ダークカッター",
'zh-tw': "暗黑利刃",
th: "ดาร์กคัตเตอร์",
id: "Kegelapan Pemotong"
},
damage: 160
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card