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

55
data-asia/S/S4a/063.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷鳥龍"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 160,
types: ["Lightning"],
description: {
'zh-tw': "在遠古時代曾憑藉自己強大的下半身而所向無敵,但因吃光了賴以為生的植物而滅絕了。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝天電流"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢「衝天電流」的傷害「+90」點。"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 200,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card