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

55
data-asia/S/S11/044.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "勾魂眼"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "寶石的眼睛發出詭異光芒時,就會攝取人的魂魄。 是令人恐懼的寶可夢。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "抓"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "放逐礦山"
},
effect: {
'zh-tw': "這個招式只有在自己的放逐區有10張以上的卡時才可使用。將12個傷害指示物以任意方式放置於對手的寶可夢身上。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card