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

63 lines
2.1 KiB
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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "詭角鹿V",
th: "อายาชิชิV",
ja: "アヤシシV"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "開拓之路",
th: "ฟรอนเทียร์โรด",
ja: "フロンティアロード"
},
effect: {
'zh-tw': "在自己的回合當從備戰區將這隻寶可夢放置於戰鬥場時可使用1次。選擇自己的場上寶可夢身上附加的任意數量的能量改附於這隻寶可夢身上。",
th: "ในเทิร์นฝ่ายเรา เมื่อโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ ใช้ได้ 1 ครั้ง เลือกพลังงานที่ติดอยู่กับโปเกมอนบนกระดานฝ่ายเราตามจำนวนที่ชอบ ย้ายไปติดกับโปเกมอนนี้",
ja: "自分の番に、このポケモンがベンチからバトル場に出たとき、1回使える。自分の場のポケモンについているエネルギーを好きなだけ選び、このポケモンにつけ替える。"
}
}],
attacks: [{
name: {
'zh-tw': "屏障猛攻",
th: "บาเรียรัช",
ja: "バリアーラッシュ"
},
effect: {
'zh-tw': "造成這隻寶可夢身上附加的能量的數量×40點傷害。",
th: "แดเมจจะเท่ากับจำนวนพลังงานที่ติดอยู่กับโปเกมอนนี้ x40",
ja: "このポケモンについているエネルギーの数×40ダメージ。"
},
damage: "40×",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Double rare"
}
export default card