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

54
data-asia/S/S4/068.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "勾魂眼"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
description: {
'zh-tw': "寶石的眼睛發出詭異光芒時,就會攝取人的魂魄。是令人恐懼的寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "偷盜"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "無理取鬧"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card