1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

61
data-asia/S/S12/018.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "多刺菊石獸V",
th: "ออมสตาร์V",
ja: "オムスターV"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 190,
types: ["Water"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "原始指引",
th: "การชี้นำจากยุคดึกดำบรรพ์",
ja: "げんしのみちびき"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張從名稱中有「化石」的物品卡進化而來的寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกโปเกมอนที่วิวัฒนาการจากการ์ดไอเท็มที่มีคำว่า [ฟอสซิล] บนชื่อได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด",
ja: "自分の山札から、名前に「化石」とつくグッズから進化するポケモンを2枚まで選び、ベンチに出す。そして山札を切る。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "觸手凝固",
th: "หนวดจับล็อก",
ja: "しょくしゅがため"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的進化寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนวิวัฒนาการที่ได้รับท่าต่อสู้นี้จะใช้ท่าต่อสู้ไม่ได้",
ja: "次の相手の番、このワザを受けた進化ポケモンは、ワザが使えない。"
},
damage: 110,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Double rare"
}
export default card