1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19: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

55
data-asia/S/S5R/058.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "東施喵",
th: "บูเนียตโตะ"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "為了讓自己的身體看起來大一點來威嚇對手,會把分叉的尾巴緊緊纏在腰上。",
th: "จะใช้หางสองแฉกรัดเอวทำให้ตัวดูใหญ่ขึ้นเพื่อข่มขู่ศัตรู"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "貓日和",
th: "แมวเริงร่าฟ้าใส"
},
effect: {
'zh-tw': "從自己的牌庫抽出3張卡。然後將這隻寶可夢【睡眠】。",
th: "จั่วการ์ด 3 ใบจากสำรับการ์ดฝ่ายเรา หลังจากนั้น ทำให้โปเกมอนนี้อยู่ในสภาวะ [หลับ]"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "利爪劈擊",
th: "กรงเล็บฉีกร่าง"
},
damage: 120,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card