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

51 lines
886 B
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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "拉帝歐斯"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "擁有很高的智慧,能理解人類的語言。是厭惡爭鬥的溫柔寶可夢。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "藍色支援"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從自己的手牌選擇1張【超】能量卡附於自己的「拉帝亞斯」身上。"
}
}],
attacks: [{
name: {
'zh-tw': "潔淨光芒"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 210,
cost: ["Water", "Water", "Psychic", "Colorless"]
}],
retreat: 2,
regulationMark: "E"
}
export default card