mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
89
data/Sun & Moon/Yellow A Alternate/SV61.ts
Normal file
89
data/Sun & Moon/Yellow A Alternate/SV61.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Yellow A Alternate'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Banette-GX",
|
||||
fr: "Branette-GX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
354,
|
||||
],
|
||||
hp: 190,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Shuppet",
|
||||
fr: "Polichombr",
|
||||
},
|
||||
|
||||
suffix: "GX",
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Shady Move",
|
||||
fr: "Déplacement Louche",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may move 1 damage counter from 1 Pokémon to another Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez déplacer un marqueur de dégâts d’un Pokémon vers un autre Pokémon.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Shadow Chant",
|
||||
fr: "Chant d’Ombre",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack does 10 more damage for each Supporter card in your discard pile. You can't add more than 100 damage in this way.",
|
||||
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque carte Supporter dans votre pile de défausse. Vous ne pouvez pas ajouter plus de 100 dégâts de cette façon.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Tomb Hunt-GX",
|
||||
fr: "Chasse Sépulcre-GX",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 3 cards from your discard pile into your hand. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Prenez 3 cartes dans votre pile de défausse et ajoutez-les à votre main. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user