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

70 lines
1.9 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: "Luxray"
},
illustrator: "kantaro",
category: "Pokemon",
dexId: [405],
hp: 150,
types: ["Lightning"],
description: {
ja: "壁の向こうも 見える 力で 逃げた 獲物を 追いつめるほかにも 迷子の 子どもを 捜したりする。",
'zh-tw': "擁有能看見牆壁另一側的力量,除了可以用來追捕逃跑的獵物, 還可以用來尋找迷路的孩子。",
id: "Selain untuk memojokkan mangsa yang melarikan diri, kemampuan Luxray yang dapat melihat sesuatu di balik dinding juga digunakan untuk mencari anak tersesat."
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "みなぎるせんこう",
'zh-tw': "充溢閃光",
id: "Kilas Bergejolak"
},
effect: {
ja: "自分の番に、このカードが手札にあり、自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、1回使える。このカードをベンチに出す。",
'zh-tw': "在自己的回合若手牌有這張卡且自己剩餘獎賞卡的張數比對手剩餘獎賞卡的張數多則可使用1次。將這張卡放置於備戰區。",
id: "Dapat digunakan 1 kali pada giliran sendiri jika kartu ini ada di Kartu Pegangan dan sisa Kartu Point sendiri lebih banyak dari sisa Kartu Point lawan. Masukkan kartu ini ke Cadangan."
}
}],
attacks: [{
cost: ["Lightning", "Colorless", "Colorless"],
name: {
ja: "ワイルドボルト",
'zh-tw': "瘋狂伏特",
id: "Wild Volt"
},
damage: 180,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。",
id: "Pokémon ini juga menerima kerusakan sejumlah 20."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card