-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add shrouded fable cards (#525)
- Loading branch information
1 parent
80f483a
commit cfd6d5c
Showing
101 changed files
with
5,742 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Set } from '../../interfaces' | ||
import serie from '../Scarlet & Violet' | ||
|
||
const set: Set = { | ||
id: "sv06.5", | ||
|
||
name: { | ||
de: "Nebel der Sagen", | ||
en: "Shrouded Fable", | ||
es: "Fabula Sombría", | ||
fr: "Fable Nébuleuse", | ||
it: "Segreto Fiabesco", | ||
pt: "Fábulas Nebulosas" | ||
}, | ||
|
||
serie: serie, | ||
|
||
cardCount: { | ||
official: 64 | ||
}, | ||
|
||
releaseDate: "2024-08-02" | ||
} | ||
|
||
export default set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Shrouded Fable" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Joltik", | ||
fr: "Statitik", | ||
es: "Joltik", | ||
it: "Joltik", | ||
pt: "Joltik", | ||
de: "Wattzapf" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 40, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Splashing Dodge", | ||
fr: "Esquive Éclaboussante", | ||
es: "Esquivo Chapoteo", | ||
it: "Schivata Splash", | ||
pt: "Evasão de Borrifada", | ||
de: "Ausweichplatscher" | ||
}, | ||
|
||
effect: { | ||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from and effects of attacks done to this Pokémon.", | ||
fr: "Lancez une pièce. Si c'est face, pendant le prochain tour de votre adversaire, évitez tous les dégâts et les effets d'attaques infligés à ce Pokémon.", | ||
es: "Lanza 1 moneda. Si sale cara, durante el próximo turno de tu rival, se evitan todo el daño y todos los efectos de los ataques infligidos a este Pokémon.", | ||
it: "Lancia una moneta. Se esce testa, durante il prossimo turno del tuo avversario, previeni sia i danni che gli effetti degli attacchi inflitti a questo Pokémon.", | ||
pt: "Jogue uma moeda. Se sair cara, durante o próximo turno do seu oponente, previna todo o dano e os efeitos de ataques causados a este Pokémon.", | ||
de: "Wirf 1 Münze. Verhindere bei Kopf während des nächsten Zuges deines Gegners allen Schaden durch und alle Effekte von Attacken, die diesem Pokémon zugefügt werden." | ||
}, | ||
|
||
damage: 10 | ||
}], | ||
|
||
retreat: 1, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Shrouded Fable" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Galvantula", | ||
fr: "Mygavolt", | ||
es: "Galvantula", | ||
it: "Galvantula", | ||
pt: "Galvantula", | ||
de: "Voltula" | ||
}, | ||
|
||
rarity: "Uncommon", | ||
category: "Pokemon", | ||
hp: 100, | ||
types: ["Grass"], | ||
stage: "Stage1", | ||
|
||
abilities: [{ | ||
type: "Ability", | ||
|
||
name: { | ||
en: "Compound Eyes", | ||
fr: "Œil Composé", | ||
es: "Ojo Compuesto", | ||
it: "Insettocchi", | ||
pt: "Olhos Compostos", | ||
de: "Facettenauge" | ||
}, | ||
|
||
effect: { | ||
en: "Attacks used by this Pokémon do 50 more damage to your opponent's Active Pokémon that has an Ability (before applying Weakness and Resistance).", | ||
fr: "Les attaques utilisées par ce Pokémon infligent 50 dégâts supplémentaires au Pokémon Actif de votre adversaire ayant un talent (avant application de la Faiblesse et de la Résistance).", | ||
es: "Los ataques usados por este Pokémon hacen 50 puntos de daño más al Pokémon Activo de tu rival que tenga una habilidad (antes de aplicar Debilidad y Resistencia).", | ||
it: "Gli attacchi usati da questo Pokémon infliggono 50 danni in più al Pokémon attivo del tuo avversario che ha un'abilità, prima di aver applicato debolezza e resistenza.", | ||
pt: "Os ataques usados por este Pokémon causam 50 pontos de dano a mais ao Pokémon Ativo do seu oponente que tem uma Habilidade (antes de aplicar Fraqueza e Resistência).", | ||
de: "Die von diesem Pokémon eingesetzten Attacken fügen dem Aktiven Pokémon deines Gegners, das eine Fähigkeit hat, 50 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)." | ||
} | ||
}], | ||
|
||
attacks: [{ | ||
cost: ["Grass", "Colorless"], | ||
|
||
name: { | ||
en: "Shocking Web", | ||
fr: "Toile Choquante", | ||
es: "Tela Electrizante", | ||
it: "Rete Fulminante", | ||
pt: "Teia Eletrizante", | ||
de: "Schockierendes Netz" | ||
}, | ||
|
||
effect: { | ||
en: "If this Pokémon has any Lightning Energy attached, this attack does 80 more damage.", | ||
fr: "Si au moins une Énergie Lightning est attachée à ce Pokémon, cette attaque inflige 80 dégâts supplémentaires.", | ||
es: "Si este Pokémon tiene alguna Energía Lightning unida, este ataque hace 80 puntos de daño más.", | ||
it: "Se questo Pokémon ha delle Energie Lightning assegnate, questo attacco infligge 80 danni in più.", | ||
pt: "Se este Pokémon tiver alguma Energia Lightning ligada a ele, este ataque causará 80 pontos de dano a mais.", | ||
de: "Wenn an dieses Pokémon mindestens 1 Lightning-Energie angelegt ist, fügt diese Attacke 80 Schadenspunkte mehr zu." | ||
}, | ||
|
||
damage: "50+" | ||
}], | ||
|
||
retreat: 1, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Shrouded Fable" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Rowlet", | ||
fr: "Brindibou", | ||
es: "Rowlet", | ||
it: "Rowlet", | ||
pt: "Rowlet", | ||
de: "Bauz" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 70, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Colorless"], | ||
|
||
name: { | ||
en: "Add On", | ||
fr: "Ajout", | ||
es: "Sumar", | ||
it: "Supplemento", | ||
pt: "Adicionar", | ||
de: "Hinzufügen" | ||
}, | ||
|
||
effect: { | ||
en: "Draw a card.", | ||
fr: "Piochez une carte.", | ||
es: "Roba 1 carta.", | ||
it: "Pesca una carta.", | ||
pt: "Compre uma carta.", | ||
de: "Ziehe 1 Karte." | ||
} | ||
}, { | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Leafage", | ||
fr: "Feuillage", | ||
es: "Follaje", | ||
it: "Fogliame", | ||
pt: "Folhagem", | ||
de: "Blattwerk" | ||
}, | ||
|
||
damage: 10 | ||
}], | ||
|
||
retreat: 1, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Shrouded Fable" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Dartrix", | ||
fr: "Efflèche", | ||
es: "Dartrix", | ||
it: "Dartrix", | ||
pt: "Dartrix", | ||
de: "Arboretoss" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 90, | ||
types: ["Grass"], | ||
stage: "Stage1", | ||
|
||
attacks: [{ | ||
cost: ["Colorless"], | ||
|
||
name: { | ||
en: "United Wings", | ||
fr: "Ailes Unies", | ||
es: "Alas Unidas", | ||
it: "Ali Unite", | ||
pt: "União Alada", | ||
de: "Vereinte Schwingen" | ||
}, | ||
|
||
effect: { | ||
en: "This attack does 20 damage for each Pokémon in your discard pile that has the United Wings attack.", | ||
fr: "Cette attaque inflige 20 dégâts pour chaque Pokémon dans votre pile de défausse ayant l'attaque Ailes Unies.", | ||
es: "Este ataque hace 20 puntos de daño por cada Pokémon en tu pila de descartes que tenga el ataque Alas Unidas.", | ||
it: "Questo attacco infligge 20 danni per ogni Pokémon nella tua pila degli scarti che ha l'attacco Ali Unite.", | ||
pt: "Este ataque causa 20 pontos de dano para cada Pokémon na sua pilha de descarte que tiver o ataque União Alada.", | ||
de: "Diese Attacke fügt für jedes Pokémon in deinem Ablagestapel, das die Attacke Vereinte Schwingen hat, 20 Schadenspunkte zu." | ||
}, | ||
|
||
damage: "20×" | ||
}, { | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Cutting Wind", | ||
fr: "Vent Glacial", | ||
es: "Viento Helado", | ||
it: "Vento Tagliente", | ||
pt: "Vento Dilacerante", | ||
de: "Schneidender Wind" | ||
}, | ||
|
||
damage: 30 | ||
}], | ||
|
||
retreat: 1, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Shrouded Fable" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Decidueye", | ||
fr: "Archéduc", | ||
es: "Decidueye", | ||
it: "Decidueye", | ||
pt: "Decidueye", | ||
de: "Silvarro" | ||
}, | ||
|
||
rarity: "Uncommon", | ||
category: "Pokemon", | ||
hp: 150, | ||
types: ["Grass"], | ||
stage: "Stage2", | ||
|
||
attacks: [{ | ||
cost: ["Colorless"], | ||
|
||
name: { | ||
en: "Stock Up on Feathers", | ||
fr: "Réserve de Plumes", | ||
es: "Acopio de Plumas", | ||
it: "Scorta di Piume", | ||
pt: "Estoque de Penas", | ||
de: "Federvorrat" | ||
}, | ||
|
||
effect: { | ||
en: "Draw cards until you have 7 cards in your hand.", | ||
fr: "Piochez des cartes jusqu'à en avoir 7 en main.", | ||
es: "Roba cartas hasta que tengas 7 cartas en tu mano.", | ||
it: "Pesca fino ad avere sette carte in mano.", | ||
pt: "Compre cartas até ter 7 cartas na sua mão.", | ||
de: "Ziehe so lange Karten, bis du 7 Karten auf deiner Hand hast." | ||
} | ||
}, { | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Power Shot", | ||
fr: "Tir Puissant", | ||
es: "Disparo Poderoso", | ||
it: "Forzatiro", | ||
pt: "Disparo Poderoso", | ||
de: "Powersalve" | ||
}, | ||
|
||
effect: { | ||
en: "Discard a Basic Grass Energy card from your hand. If you can't, this attack does nothing.", | ||
fr: "Défaussez une carte Énergie Grass de base de votre main. Si vous ne le pouvez pas, cette attaque ne fait rien.", | ||
es: "Descarta 1 carta de Energía Grass Básica de tu mano. Si no puedes, este ataque no hace nada.", | ||
it: "Scarta una carta Energia base Grass che hai in mano. Se non puoi, questo attacco non ha effetto.", | ||
pt: "Descarte uma carta de Energia Grass Básica da sua mão. Se não puder fazer isto, este ataque não fará nada.", | ||
de: "Lege 1 Basis-Grass-Energiekarte aus deiner Hand auf deinen Ablagestapel. Wenn du das nicht machen kannst, hat diese Attacke keine Auswirkungen." | ||
}, | ||
|
||
damage: 170 | ||
}], | ||
|
||
retreat: 2, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
Oops, something went wrong.