mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 19:19:50 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
62
data-asia/S/S5R/041.ts
Normal file
62
data-asia/S/S5R/041.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S5R"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "嘎啦嘎啦",
|
||||
th: "การะการะ"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會節奏性地敲響骨頭,藉此與夥伴進行聯絡。節奏有著將近50種不同變化。",
|
||||
th: "จะเคาะกระดูกเป็นจังหวะเพื่อติดต่อกับพวกพ้อง โดยมีรูปแบบถึง 50 แบบเลยทีเดียว"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "骨頭回力鏢",
|
||||
th: 'บูมเมอแรงกระดูก'
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲2次硬幣,造成正面出現的次數×90點傷害。",
|
||||
th: 'ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x90'
|
||||
},
|
||||
|
||||
damage: "90×",
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "戰鬥盔甲",
|
||||
th: "เกราะแข็ง"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。",
|
||||
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับ จะถูก [-30]"
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user