1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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/S11/036.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "電燈怪"
},
illustrator: "aoki",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "電燈怪發出的光有著極高的亮度,甚至可以從5000公尺 深的水底照亮水面。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "強力伏特"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 160,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card