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

51
data-asia/S/SC2b/014.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 達摩狒狒"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
'zh-tw': "原本已經退化的火囊因憤怒而重生。在所到之處胡亂噴火大鬧一番。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "頭錘"
},
damage: 40,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "凍結高溫"
},
effect: {
'zh-tw': "若希望將這隻寶可夢身上附加的【水】能量全部丟棄。這個情況下增加60點傷害。"
},
damage: "110+",
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card