1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

50 lines
807 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "大針蜂V"
},
illustrator: "Ayaka Yoshida",
category: "Pokemon",
hp: 210,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "雙針"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×40點傷害。"
},
damage: "40×",
cost: ["Grass"]
}, {
name: {
'zh-tw': "群起刺擊"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到自己的場上「大針蜂【V】」的數量×50點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card