mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
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 |