1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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/074.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: "Yuu Nishida",
category: "Pokemon",
hp: 120,
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': "在下個對手的回合這隻寶可夢不會受到「寶可夢【VMAX】」招式的傷害。"
},
damage: 70,
cost: ["Fire", "Psychic", "Colorless"]
}],
retreat: 1,
regulationMark: "E"
}
export default card