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:
47
data-asia/S/SC2a/064.ts
Normal file
47
data-asia/S/SC2a/064.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC2a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "沙奈朵V"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "魔法射擊"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "充溢波動"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在這個回合,若這隻寶可夢恢復了HP,則增加80點傷害。"
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
cost: ["Psychic", "Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user