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

51
data-asia/S/S6K/039.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S6K"
const card: Card = {
set: Set,
name: {
'zh-tw': "蟾蜍王"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 170,
types: ["Fighting"],
description: {
'zh-tw': "在老年人之間廣受歡迎。因為他們覺得牠身上的瘤發出的震動拿來按摩剛剛好。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "蕩蕩波"
},
effect: {
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式所需的能量與【撤退】所需的能量各增加1個【無】能量。"
},
damage: 60,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "巨聲"
},
damage: 160,
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card