mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
57
data-asia/S/S9/049.ts
Normal file
57
data-asia/S/S9/049.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "風妖精V",
|
||||
ja: "エルフーンV"
|
||||
},
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "妨礙棉絮",
|
||||
ja: "おじゃまなわたげ"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。",
|
||||
ja: "次の相手の番、このワザを受けたたねポケモンは、ワザが使えない。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "棉花防守",
|
||||
ja: "コットンガード"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。",
|
||||
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Psychic", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F",
|
||||
rarity: "Double rare"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user