1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

45
data-asia/S/S-P/218.ts Normal file
View File

@ -0,0 +1,45 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈V"
},
illustrator: "PLANETA Hiiragi",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "天之吶喊"
},
effect: {
'zh-tw': "將自己的牌庫上方3張卡丟棄將其中的能量卡全部附於這隻寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "龍之鐳射"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 130,
cost: ["Grass", "Grass", "Fire"]
}],
retreat: 3,
regulationMark: "F"
}
export default card