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

69 lines
1.9 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ラッキー",
'zh-tw': "吉利蛋",
th: "ลัคกี"
},
category: "Pokemon",
rarity: "Common",
illustrator: "HYOGONOSUKE",
dexId: [113],
hp: 120,
types: ["Colorless"],
description: {
ja: "持っている タマゴを 割らないように 気をつけて 歩く。 でも 逃げ足は とても 速い。",
'zh-tw': "為了避免蛋被打破, 走起路來小心謹慎。 然而逃跑速度卻是快之無比。",
th: "เดินอย่างระวังเพื่อไม่ให้ไข่ที่มีอยู่แตก แต่ตอนหนีจะหนีไวมาก"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ラッキーアタッチ",
'zh-tw': "幸運貼附",
th: "ลัคกีแอตแทช"
},
effect: {
ja: "自分の手札から基本エネルギーを1枚選び、自分のポケモンにつける。",
'zh-tw': "從自己的手牌選擇1張基本能量卡附於自己的寶可夢身上。",
th: "เลือกการ์ดพลังงานพื้นฐาน 1 ใบจากบนมือฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "そこぢから",
'zh-tw': "潛力",
th: "พลังแฝง"
},
damage: 80,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card