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:
55
data-asia/S/SCA/039.ts
Normal file
55
data-asia/S/SCA/039.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SCA"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "胡地V"
|
||||
},
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "意念之匙"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將3個傷害指示物以任意方式放置於對手的寶可夢身上。"
|
||||
},
|
||||
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "意志統治者"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "造成對手的手牌的張數×30點傷害。"
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
cost: ["Psychic", "Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user