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

51 lines
753 B
TypeScript
Raw Permalink 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 "../SCA"
const card: Card = {
set: Set,
name: {
'zh-tw': "以歐路普V"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 180,
types: ["Grass"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "狡兔三窟"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
'zh-tw': "神秘波"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
},
damage: "50+",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card