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

64 lines
1.7 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ルチャブル",
'zh-tw': "摔角鷹人",
id: "Hawlucha"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [701],
hp: 70,
types: ["Fighting"],
description: {
ja: "翼を 使い 軽やかに 跳び 相手を 華麗に 仕留める 技は 生まれ育った 森で 磨かれる。",
'zh-tw': "使用翅膀輕盈地跳起後,華麗地置對手於死地的招式 是在出生的森林磨練出來的。",
id: "Serangan Hawlucha untuk mengakhiri lawannya secara elok dengan terbang lincah menggunakan sayapnya diasah di hutan tempat ia lahir dan dibesarkan."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "フライングエントリー",
'zh-tw': "飛身進場",
id: "Flying Entry"
},
effect: {
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。相手のベンチポケモン2匹に、それぞれダメカンを1個のせる。",
'zh-tw': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。在對手的2隻備戰寶可夢身上各放置1個傷害指示物。",
id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan ke Cadangan. Letakkan masing-masing sejumlah 1 Token Kerusakan pada 2 Pokémon Cadangan lawan."
}
}],
attacks: [{
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "つばさでうつ",
'zh-tw': "翅膀攻擊",
id: "Pukulan Sayap"
},
damage: 70
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card