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

57 lines
1.2 KiB
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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "布里卡隆V",
ja: "ブリガロンV"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 230,
types: ["Grass"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "尖刺鋒線",
ja: "ニードルライン"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上當自己的戰鬥場的「布里卡隆【V】」受到對手的寶可夢招式的傷害時在使用招式的寶可夢身上放置3個傷害指示物。",
ja: "このポケモンがいるかぎり、自分のバトル場の「ブリガロンV」が、相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを3個のせる。"
}
}],
attacks: [{
name: {
'zh-tw': "達陣",
ja: "タッチダウン"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。",
ja: "このポケモンのHPを「30」回復する。"
},
damage: 130,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 4,
regulationMark: "F"
}
export default card