1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

47
data-asia/S/S10P/051.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈"
},
illustrator: "DOM",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "有學者認為牠的手臂是古代龍寶可夢頭部的形狀。 但這個學說尚未被證實。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "龍之護庇"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌滿4張為止。在這個回合若已經使出了其他的「龍之護庇」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "巨大之牙"
},
damage: 160,
cost: ["Grass", "Fire", "Colorless"]
}],
retreat: 3,
regulationMark: "F"
}
export default card