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

56
data-asia/S/S5R/046.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "師父鼬",
th: "โคโจนโดะ"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "當牠用奇妙聲音發出叫喊時是很危險的,由快到無法看清的踢腿和手刀組成的連續攻擊將接踵而來。",
th: "เมื่อหอนด้วยเสียงประหลาดถือว่าอันตราย ลูกเตะและลูกสับจะเริ่มประโคมกันโจมตีมาอย่างต่อเนื่องขนาดที่จับตามองไม่ทันทีเดียว"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "拍擊",
th: "ปัด"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "旋轉鞭打",
th: "สปินนิ่งวิป"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【混亂】。將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของฝ่ายตรงข้ามเป็นสภาวะ [สับสน] นำโปเกมอนนี้และการ์ดทั้งหมดที่ติดอยู่กลับไปในสำรับการ์ดฝ่ายเราแล้วสับ"
},
damage: 90,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card