1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SV/SV-P/055.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "閃電鳥ex"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 200,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "伏特浮游"
},
effect: {
'zh-tw': "若這隻寶可夢身上附有【雷】能量卡,則這隻寶可夢【撤退】所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "閃電連彈"
},
effect: {
'zh-tw': "對手的身上放置有傷害指示物的1隻備戰寶可夢也受到90點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 120,
cost: ["Lightning", "Lightning", "Lightning"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card