1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00
TCGdex [Bot] 89e0b8d367
editor: fix some other rarities (#584)
Co-authored-by: Avior <git@avior.me>
2024-11-21 01:52:48 +01:00

35 lines
487 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Pikachu ex"
},
category: "Pokemon",
hp: 120,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
en: "Circle Circuit"
},
effect: {
en: "This attack does 30 damage for each of your Benched L Pokémon."
},
damage: "30x"
}],
retreat: 1,
rarity: "Crown"
}
export default card