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

52
data-asia/S/S10D/043.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "狐大盜"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "會偷偷在看中的獵物身上留下標記,追蹤目標的氣味, 在對方放鬆警戒時偷盜。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "五里霧中"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為2張以下則生效。只要這隻寶可夢在場上對手從手牌使出支援者時自己的備戰區的所有「寶可夢【V】」不會受到其效果的影響。"
}
}],
attacks: [{
name: {
'zh-tw': "銳利之牙"
},
damage: 110,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card