1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add SV9a (#672)

This commit is contained in:
2025-05-24 20:35:21 +02:00
committed by GitHub
parent 90d12fc9b6
commit db5863caee
93 changed files with 5333 additions and 0 deletions

49
data-asia/SV/SV9a/034.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "エレブー",
'zh-tw': "電擊獸",
'zh-cn': "電擊獸"
},
illustrator: "Amelicart",
rarity: "Common",
category: "Pokemon",
dexId: [125],
hp: 90,
types: ["Lightning"],
description: {
ja: "全身から つねに 電気が 放たれているため 近づくと 髪の毛が 逆立ってしまう。",
'zh-tw': "身體隨時都在放電, 所以只要靠近牠, 頭髮就會倒豎起來。",
'zh-cn': "身體隨時都在放電, 所以只要靠近牠, 頭髮就會倒豎起來。"
},
stage: "Basic",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "エレキスラッグ",
'zh-tw': "電氣猛擊",
'zh-cn': "電氣猛擊"
},
damage: 50
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card