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

60 lines
1.7 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 "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "以歐路普",
th: "อิออร์บ"
},
illustrator: "Mizue",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "釋放出精神力量來調查周圍的情況。牠的偵測範圍甚至可以達到方圓10公里。",
th: "ปล่อยพลังจิตเพื่อสำรวจบริเวณโดยรอบ สังเกตการณ์ได้ไกลถึง 10 กิโลเมตรเลยนะ"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "進化掌控",
th: "อีโวคอนโทรล"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多與這隻寶可夢身上附加的能量相同數量的【2階進化】寶可夢卡「以歐路普」除外放置於備戰區。並且重洗牌庫。",
th: "เลือกโปเกมอน [ร่าง2] (ยกเว้น [อิออร์บ]) จากสำรับการ์ดฝ่ายเราได้สูงสุดไม่เกินจำนวนพลังงานที่ติดที่โปเกมอนนี้ วางบนเบนช์ แล้วสับสำรับการ์ด"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "意念頭錘",
th: "ท่าโขกหัวพลังจิต"
},
damage: 120,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card