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

57
data-asia/S/S9/035.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "電擊獸",
ja: "エレブー"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
'zh-tw': "很多發電廠會用地面屬性的寶可夢當守衛,藉以對抗 想伺機偷吃電力的電擊獸。",
ja: "電気を 狙う エレブーの 対策に じめんポケモンを 置く 発電所は 多い。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "電磁波",
ja: "でんじは"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。"
},
cost: ["Lightning"]
}, {
name: {
'zh-tw': "伏特頭擊",
ja: "ヘッドボルト"
},
damage: 30,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [125]
}
export default card