mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
57 lines
939 B
TypeScript
57 lines
939 B
TypeScript
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 |