1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 11:30:46 +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/041.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: "GOSSAN",
category: "Pokemon",
hp: 180,
types: ["Water"],
description: {
'zh-tw': "迴游在冰雪地帶的寶可夢。會用強韌的肌肉和厚實的 皮下脂肪保護自己的身體。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "雪崩"
},
effect: {
'zh-tw': "對手的所有備戰寶可夢也各受到10點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 30,
cost: ["Water"]
}, {
name: {
'zh-tw': "回轉滑梯"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×100點傷害。"
},
damage: "100×",
cost: ["Water", "Water", "Water"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card