1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

60
data-asia/S/S5R/038.ts Normal file
View File

@ -0,0 +1,60 @@
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