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

61
data-asia/S/S4a/071.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "耿鬼"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "滿月的夜晚,如果影子自己動起來並露出笑容,那肯定是耿鬼搞的鬼。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "生命混合器"
},
effect: {
'zh-tw': "在自己的回合時可不限次數使用。選擇1個自己的場上的【超】寶可夢身上放置的傷害指示物改放於自己的其他【超】寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "催眠波動"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
},
damage: 90,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card