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

56
data-asia/S/S10P/025.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 冰岩怪"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 140,
types: ["Water"],
description: {
'zh-tw': "包覆下顎的冰塊裝甲硬度更勝鋼鐵,能輕易地擊碎岩石。冰岩怪藉此剷開 厚重積雪,在險峻的山路上猛衝。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "渾厚冰"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-30」點。"
}
}],
attacks: [{
name: {
'zh-tw': "冰山風"
},
effect: {
'zh-tw': "若場上有競技場卡則增加120點傷害。然後將那張競技場卡丟棄。"
},
damage: "100+",
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card