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

57
data-asia/S/SLL/010.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "叉字蝠V",
ja: "クロバットV"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 180,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "暗夜能源",
ja: "ナイトアセット"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從牌庫抽卡直到自己的手牌滿6張為止。在這個回合若已經使出了其他的「暗夜能源」則這個特性無法使用。",
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。自分の手札が6枚になるように、山札を引く。この番、すでに別の「ナイトアセット」を使っていたなら、この特性は使えない。"
}
}],
attacks: [{
name: {
'zh-tw': "毒牙",
ja: "どくのキバ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
damage: 70,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card