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

71 lines
1.9 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "イオルブ",
'zh-tw': "以歐路普",
th: "อิออร์บ"
},
illustrator: "Oku",
rarity: "Uncommon",
category: "Pokemon",
dexId: [826],
hp: 130,
types: ["Grass"],
description: {
ja: "サイコパワーを 放ち 周囲を 調べている。 観測範囲は 周囲 10キロにも 達するぞ。",
'zh-tw': "釋放出精神力量來調查周圍的情況。牠的偵測範圍甚至可以達到方圓10公里。",
th: "ปล่อยพลังจิตเพื่อสำรวจบริเวณโดยรอบ สังเกตการณ์ได้ไกลถึง 10 กิโลเมตรเลยนะ"
},
stage: "Stage2",
attacks: [{
cost: ["Grass"],
name: {
ja: "サテライトビーム",
'zh-tw': "衛星光束",
th: "ลำแสงดาวเทียม"
},
damage: "30×",
effect: {
ja: "相手のトラッシュにあるエネルギーの枚数×30ダメージ。",
'zh-tw': "造成對手的棄牌區的能量卡的張數×30點傷害。",
th: "แดเมจจะเท่ากับจำนวนการ์ดพลังงานที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายตรงข้าม x30"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ブレインシェイク",
'zh-tw': "腦力震動",
th: "เบรนเชค"
},
damage: 100,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card