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

68 lines
1.8 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ソルロック",
'zh-tw': "太陽岩",
th: "โซลร็อก"
},
illustrator: "Tetsu Kayama",
rarity: "Uncommon",
category: "Pokemon",
dexId: [338],
hp: 90,
types: ["Psychic"],
description: {
ja: "太陽エネルギーが パワーの 源 なので 昼間は 強い。 回転すると 体が 光る。",
'zh-tw': "太陽能量是力量的來源,所以在白天裡很強。旋轉時身體會發光。",
th: "แข็งแกร่งในช่วงกลางวันเพราะมีพลังงานแสงอาทิตย์เป็นแหล่งพลัง เมื่อหมุนตัว ร่างกายจะส่องแสง"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なかまをよぶ",
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Psychic", "Colorless"],
name: {
ja: "ソーラービーム",
'zh-tw': "日光束",
th: "โซล่าร์บีม"
},
damage: 50
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card