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

52
data-asia/S/S6H/025.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S6H"
const card: Card = {
set: Set,
name: {
'zh-tw': "冰寶"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "棲息在極其寒冷的地域。會把自己的腳凍在冰岩怪的背上固定起來。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "自然回復"
},
effect: {
'zh-tw': "每次從自己的手牌將能量附於這隻寶可夢身上時,都將這隻寶可夢的特殊狀態全部恢復。"
}
}, {
name: {
'zh-tw': "幸福轟炸"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的能量的數量×30點傷害。若希望在造成傷害後從棄牌區選擇最多3張能量卡附於這隻寶可夢身上。"
},
damage: "10+",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card