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

61
data-asia/S/S5I/029.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "火爆猴",
th: "โอโคริซารุ"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 120,
types: ["Fighting"],
description: {
'zh-tw': "和其他的寶可夢比起來,牠的腦血管特別結實,就算一直發怒也能活得好好的。",
th: "เส้นเลือดในสมองนั้นแข็งแรงกว่าโปเกมอนอื่น ๆ แม้จะโกรธยาวนานแค่ไหนก็แข็งแรงอยู่ได้"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "場地粉碎",
th: "ทำลายสนาม"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。",
th: "ทิ้งการ์ดสเตเดียมฝ่ายตรงข้ามที่วางบนกระดานที่ตำแหน่งทิ้งการ์ด"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "暴怒轟炸",
th: "บอมเบอร์ฟิวส์ขาด"
},
effect: {
'zh-tw': "造成自己的備戰區的身上放置有傷害指示物的寶可夢數量×50點傷害。",
th: "แดเมจจะเท่ากับจำนวนโปเกมอนบนเบนช์ฝ่ายเราที่มีตัวนับแดเมจวางอยู่ x50"
},
damage: "50×",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card