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

52
data-asia/S/S4a/064.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷鳥海獸"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
'zh-tw': "牠凍成冰的上半身在顫抖時可以產生電能。非常不擅長走路。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "凍僵旋渦"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上每次對手從手牌將能量附於寶可夢身上在那隻寶可夢身上放置2個傷害指示物。"
}
}],
attacks: [{
name: {
'zh-tw': "電球"
},
damage: 70,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card