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

64 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': "拉帝歐斯",
th: "ลาทิโอส",
ja: "ラティオス"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "擁有很高的智慧,能理解人類的語言。 是厭惡爭鬥的溫柔寶可夢。",
th: "มีสติปัญญาสูงและเข้าใจภาษามนุษย์ เป็นโปเกมอนใจดีที่เกลียดการต่อสู้",
ja: "高い 知能を 持ち 人間の 言葉を 理解する。 争いを 嫌う 優しい ポケモンだ。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "藍色支援",
th: "บลูแอสซิสต์",
ja: "ブルーアシスト"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張【超】能量卡附於自己的「拉帝亞斯」身上。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ดพลังงาน [พลังจิต] 1 ใบจากบนมือฝ่ายเรา ติดที่ [ลาทิอาส] ฝ่ายเรา",
ja: "自分の番に1回使える。自分の手札からエネルギーを1枚選び、自分の「ラティアス」につける。"
}
}],
attacks: [{
name: {
'zh-tw': "潔淨光芒",
th: "ลัสเตอร์เพิร์จ",
ja: "ラスターパージ"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。"
},
damage: 210,
cost: ["Water", "Water", "Psychic", "Colorless"]
}],
retreat: 2,
regulationMark: "E",
dexId: [381]
}
export default card