1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/S/S8/075.ts Normal file
View File

@ -0,0 +1,51 @@
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