1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SV-P/062.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨鍛匠"
},
illustrator: "DOM",
category: "Pokemon",
hp: 140,
types: ["Psychic"],
description: {
'zh-tw': "智商高超,性格豪邁。 會用錘子打飛岩石來攻擊 飛在空中的鋼鎧鴉。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "拍落"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 40,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "狂野壓制"
},
effect: {
'zh-tw': "這隻寶可夢也受到60點傷害。"
},
damage: 220,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card