mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
71
data-asia/SV/SV4M/005.ts
Normal file
71
data-asia/SV/SV4M/005.ts
Normal file
@ -0,0 +1,71 @@
|
||||
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
|
Reference in New Issue
Block a user