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

52
data-asia/S/S4/022.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "大劍鬼"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 160,
types: ["Water"],
description: {
'zh-tw': "揮舞藏在鎧甲裡的劍,一劍就能擊倒對手。瞪一眼就能讓敵人嚇得不敢出聲。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "硬殼盔甲"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}, {
name: {
'zh-tw': "水流清洗"
},
effect: {
'zh-tw': "若希望選擇2個對手的戰鬥寶可夢身上附加的能量放回對手的手牌。"
},
damage: 120,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card