1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SV/SVD/070.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "帕底亞 土王"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "一旦遭到敵人襲擊,就會從胴體伸出粗壯的刺來反擊。 是需有覺悟承受劇痛的危險招式。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "毒陣"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 20,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "泥水之錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 100,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card