mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/EX/Legend Maker/85.ts
Normal file
70
data/EX/Legend Maker/85.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Legend Maker'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Banette ex",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
354,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Shuppet",
|
||||
},
|
||||
|
||||
suffix: "EX",
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Shady Move",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), if Banette ex is your Active Pokémon, you may move 1 damage counter from either player's Pokémon to another Pokémon (yours or your opponent's). This power can't be used if Banette ex is affected by a Special Condition.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Shadow Chant",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage plus 10 more damage for each Supporter card in your discard pile. You can't add more than 60 damage in this way.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user