mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
52
data-asia/SV/SVB/008.ts
Normal file
52
data-asia/SV/SVB/008.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVB"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "霓虹魚V"
|
||||
},
|
||||
|
||||
illustrator: "takuyoa",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "夜光標誌"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合,當從手牌將這張卡放置於備戰區時,可使用1次。從自己的牌庫選擇1張支援者卡,在給對手看過後加入手牌。並且重洗牌庫。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "水迴旋"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user