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

61
data-asia/S/SC2a/082.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怖思壺"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "住在古董茶壺裡。雖然大多數都是贗品,但偶爾也能發現真貨。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "茶擊"
},
effect: {
'zh-tw': "在自己的回合若從自己的手牌將1張持有「瘋狂派對」招式的寶可夢卡丟棄則可使用1次。從自己的牌庫抽出2張卡。"
}
}],
attacks: [{
name: {
'zh-tw': "瘋狂派對"
},
effect: {
'zh-tw': "造成自己的棄牌區的持有「瘋狂派對」招式的寶可夢的數量×20點傷害。"
},
damage: "20×",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card