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

56 lines
981 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': "以歐路普"
},
illustrator: "yuu",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "以頭腦聰慧而聞名。大大的腦子是牠擁有 出眾精神力量的證明。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "阻礙貼附"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。從對手的棄牌區選擇最多3張能量卡以任意方式附於對手的寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "神秘波"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card