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

59
data-asia/S/S12a/030.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 野蠻鱸魚",
th: "ฮิซุย บาสราโอ",
ja: "ヒスイ バスラオ"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 50,
types: ["Water"],
description: {
'zh-tw': "此寶可夢具有多項野蠻鱸魚的特徵, 雖然有性情溫馴等不同點存在, 吾人仍將其定義為野蠻鱸魚的地區形態。",
th: "แม้จะมีจุดที่แตกต่างกันอยู่ อย่างเช่น มีนิสัยสุภาพอ่อนโยน แต่ก็มีลักษณะเฉพาะของบาสราโออยู่หลายอย่าง จึงให้คำจำกัดความว่าเป็นบาสราโอร่างของภูมิภาค",
ja: "温厚な 気質など 相違点 あれども バスラオの 特徴を 多く 有すゆえ そのリージョンフォームと 定義す。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "群集",
th: "รวบรวมฝูง",
ja: "むれをあつめる"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน]ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด",
ja: "自分の山札からたねポケモンを2枚まで選び、ベンチに出す。そして山札を切る。"
}
}, {
name: {
'zh-tw': "撞擊",
th: "พุ่งเข้าชน",
ja: "たいあたり"
},
damage: 10,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [550]
}
export default card