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

52
data-asia/S/S8b/008.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "暴雪王"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "會引發暴風雪的寶可夢。只要牠搖動巨大的身體, 周圍立刻會變得一片雪白。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "堅韌提升"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上自己的場上的所有「一擊」寶可夢「暴雪王」除外的最大HP各增加「50」。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。"
}
}],
attacks: [{
name: {
'zh-tw': "百萬噸重拳"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card