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

61
data-asia/S/S6K/027.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S6K"
const card: Card = {
set: Set,
name: {
'zh-tw': "耿鬼"
},
illustrator: "Aya Kusube",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "據說牠會為了奪取山中遇難者的生命而從黑暗中出現。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "臨終之禮"
},
effect: {
'zh-tw': "當這隻寶可夢受到對手的寶可夢招式的傷害而【氣絕】時從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。"
}
}],
attacks: [{
name: {
'zh-tw': "傷痛暴擊"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×40點傷害。"
},
damage: "10+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card