-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Twilight Masquerade (#491)
- Loading branch information
1 parent
d48971c
commit 8a4a93a
Showing
227 changed files
with
13,148 additions
and
0 deletions.
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", | ||
|
||
name: { | ||
de: "Maskerade im Zwielicht", | ||
en: "Twilight Masquerade", | ||
es: "Mascarada Crepuscular", | ||
fr: "Mascarade Crépusculaire", | ||
it: "Crepuscolo Mascherato", | ||
pt: "Máscaras do Crepúsculo" | ||
}, | ||
|
||
serie: serie, | ||
|
||
cardCount: { | ||
official: 167 | ||
}, | ||
|
||
releaseDate: "2024-05-24" | ||
} | ||
|
||
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,54 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Tangela", | ||
fr: "Saquedeneu", | ||
es: "Tangela", | ||
it: "Tangela", | ||
pt: "Tangela", | ||
de: "Tangela" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 80, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Colorless"], | ||
|
||
name: { | ||
en: "Gentle Slap", | ||
fr: "Gifle Douce", | ||
es: "Bofetada Gentil", | ||
it: "Schiaffetto", | ||
pt: "Tapinha", | ||
de: "Sanfter Hieb" | ||
}, | ||
|
||
damage: 10 | ||
}, { | ||
cost: ["Grass", "Colorless"], | ||
|
||
name: { | ||
en: "Vine Slap", | ||
fr: "Gifle de Liane", | ||
es: "Bofetón Látigo", | ||
it: "Lianasberla", | ||
pt: "Tapa de Vinhas", | ||
de: "Rankenklatscher" | ||
}, | ||
|
||
damage: 30 | ||
}], | ||
|
||
retreat: 2, | ||
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 "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Tangrowth", | ||
fr: "Bouldeneu", | ||
es: "Tangrowth", | ||
it: "Tangrowth", | ||
pt: "Tangrowth", | ||
de: "Tangoloss" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 150, | ||
types: ["Grass"], | ||
stage: "Stage1", | ||
|
||
abilities: [{ | ||
type: "Ability", | ||
|
||
name: { | ||
en: "Thicket Body", | ||
fr: "Corps Buissons", | ||
es: "Cuerpo Maleza", | ||
it: "Corposelva", | ||
pt: "Corpo de Mato", | ||
de: "Dickichtkörper" | ||
}, | ||
|
||
effect: { | ||
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).", | ||
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance).", | ||
es: "Los ataques hacen 30 puntos de daño menos a este Pokémon (después de aplicar Debilidad y Resistencia).", | ||
it: "Questo Pokémon subisce 30 danni in meno dagli attacchi, dopo aver applicato debolezza e resistenza.", | ||
pt: "Este Pokémon recebe 30 pontos de dano a menos de ataques (depois de aplicar Fraqueza e Resistência).", | ||
de: "Diesem Pokémon werden durch Attacken 30 Schadenspunkte weniger zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)." | ||
} | ||
}], | ||
|
||
attacks: [{ | ||
cost: ["Grass", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Loom Over", | ||
fr: "Menacer", | ||
es: "Cernirse", | ||
it: "Presenza Minacciosa", | ||
pt: "Pairar Sobre", | ||
de: "Schattenseite" | ||
}, | ||
|
||
effect: { | ||
en: "This attack does 10 less damage for each damage counter on this Pokémon.", | ||
fr: "Cette attaque inflige 10 dégâts de moins pour chaque marqueur de dégâts sur ce Pokémon.", | ||
es: "Este ataque hace 10 puntos de daño menos por cada contador de daño en este Pokémon.", | ||
it: "Questo attacco infligge 10 danni in meno per ogni segnalino danno presente su questo Pokémon.", | ||
pt: "Este ataque causa 10 pontos de dano a menos para cada contador de dano neste Pokémon.", | ||
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 10 Schadenspunkte weniger zu." | ||
}, | ||
|
||
damage: "150-" | ||
}], | ||
|
||
retreat: 4, | ||
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 "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Pinsir", | ||
fr: "Scarabrute", | ||
es: "Pinsir", | ||
it: "Pinsir", | ||
pt: "Pinsir", | ||
de: "Pinsir" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 110, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Grass", "Colorless"], | ||
|
||
name: { | ||
en: "Slow Crunch", | ||
fr: "Mâchouille Lente", | ||
es: "Trituración Lenta", | ||
it: "Sgranocchio Lento", | ||
pt: "Esmagada Lenta", | ||
de: "Langsamer Knirscher" | ||
}, | ||
|
||
effect: { | ||
en: "Discard all Energy from this Pokémon. At the end of your opponent's next turn, the Defending Pokémon will be Knocked Out.", | ||
fr: "Défaussez toutes les Énergies de ce Pokémon. À la fin du prochain tour de votre adversaire, le Pokémon Défenseur sera mis K.O.", | ||
es: "Descarta todas las Energías de este Pokémon. Al final del próximo turno de tu rival, el Pokémon Defensor quedará Fuera de Combate.", | ||
it: "Scarta tutte le Energie da questo Pokémon. Alla fine del prossimo turno del tuo avversario, il Pokémon difensore verrà messo KO.", | ||
pt: "Descarte todas as Energias deste Pokémon. No final do próximo turno do seu oponente, o Pokémon Defensor será Nocauteado.", | ||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel. Am Ende des nächsten Zuges deines Gegners wird das Verteidigende Pokémon kampfunfähig." | ||
} | ||
}, { | ||
cost: ["Grass", "Colorless", "Colorless"], | ||
|
||
name: { | ||
en: "Superpowered Horns", | ||
fr: "Cornes Surpuissantes", | ||
es: "Cuernos Superpoderosos", | ||
it: "Corna Superpotenziate", | ||
pt: "Chifres Superpoderosos", | ||
de: "Superstarke Hörner" | ||
}, | ||
|
||
damage: 100 | ||
}], | ||
|
||
retreat: 2, | ||
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,41 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Spinarak", | ||
fr: "Mimigal", | ||
es: "Spinarak", | ||
it: "Spinarak", | ||
pt: "Spinarak", | ||
de: "Webarak" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 60, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Bug Bite", | ||
fr: "Piqûre", | ||
es: "Picadura", | ||
it: "Coleomorso", | ||
pt: "Picada", | ||
de: "Käferbiss" | ||
}, | ||
|
||
damage: 20 | ||
}], | ||
|
||
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 "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Ariados", | ||
fr: "Migalos", | ||
es: "Ariados", | ||
it: "Ariados", | ||
pt: "Ariados", | ||
de: "Ariados" | ||
}, | ||
|
||
rarity: "Uncommon", | ||
category: "Pokemon", | ||
hp: 90, | ||
types: ["Grass"], | ||
stage: "Stage1", | ||
|
||
abilities: [{ | ||
type: "Ability", | ||
|
||
name: { | ||
en: "Big Net", | ||
fr: "Grand Filet", | ||
es: "Gran Tela", | ||
it: "Gran Tela", | ||
pt: "Teia Grande", | ||
de: "Großes Netz" | ||
}, | ||
|
||
effect: { | ||
en: "Your opponent's Active Evolution Pokémon's Retreat Cost is Colorless more.", | ||
fr: "Le Coût de Retraite du Pokémon Évolutif Actif de votre adversaire est augmenté de Colorless.", | ||
es: "El Coste de Retirada del Pokémon Evolución Activo de tu rival es de Colorless más.", | ||
it: "Il costo di ritirata del Pokémon Evoluzione attivo del tuo avversario aumenta di Colorless.", | ||
pt: "O custo de Recuo do Pokémon de Evolução Ativo do seu oponente é Colorless a mais.", | ||
de: "Die Rückzugskosten des Aktiven Entwicklungs-Pokémon deines Gegners erhöhen sich um Colorless." | ||
} | ||
}], | ||
|
||
attacks: [{ | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "String Bind", | ||
fr: "Ficelage", | ||
es: "Hilo Atadura", | ||
it: "Filo Legatutto", | ||
pt: "Fio Aprisionante", | ||
de: "Fadenfessel" | ||
}, | ||
|
||
effect: { | ||
en: "This attack does 30 more damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.", | ||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.", | ||
es: "Este ataque hace 30 puntos de daño más por cada Colorless en el Coste de Retirada del Pokémon Activo de tu rival.", | ||
it: "Questo attacco infligge 30 danni in più per ogni Colorless nel costo di ritirata del Pokémon attivo del tuo avversario.", | ||
pt: "Este ataque causa 30 pontos de dano a mais para cada Colorless no custo de Recuo do Pokémon Ativo do seu oponente.", | ||
de: "Diese Attacke fügt für jedes Colorless in den Rückzugskosten des Aktiven Pokémon deines Gegners 30 Schadenspunkte mehr zu." | ||
}, | ||
|
||
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,50 @@ | ||
import { Card } from "../../../interfaces" | ||
import Set from "../Twilight Masquerade" | ||
|
||
const card: Card = { | ||
set: Set, | ||
|
||
name: { | ||
en: "Sunkern", | ||
fr: "Tournegrin", | ||
es: "Sunkern", | ||
it: "Sunkern", | ||
pt: "Sunkern", | ||
de: "Sonnkern" | ||
}, | ||
|
||
rarity: "Common", | ||
category: "Pokemon", | ||
hp: 40, | ||
types: ["Grass"], | ||
stage: "Basic", | ||
|
||
attacks: [{ | ||
cost: ["Grass"], | ||
|
||
name: { | ||
en: "Bullet Seed", | ||
fr: "Balle Graine", | ||
es: "Semilladora", | ||
it: "Semitraglia", | ||
pt: "Projétil de Semente", | ||
de: "Kugelsaat" | ||
}, | ||
|
||
effect: { | ||
en: "Flip 4 coins. This attack does 10 damage for each heads.", | ||
fr: "Lancez 4 pièces. Cette attaque inflige 10 dégâts pour chaque côté face.", | ||
es: "Lanza 4 monedas. Este ataque hace 10 puntos de daño por cada cara.", | ||
it: "Lancia quattro volte una moneta. Questo attacco infligge 10 danni ogni volta che esce testa.", | ||
pt: "Jogue 4 moedas. Este ataque causa 10 pontos de dano para cada cara.", | ||
de: "Wirf 4 Münzen. Diese Attacke fügt 10 Schadenspunkte pro Kopf zu." | ||
}, | ||
|
||
damage: "10×" | ||
}], | ||
|
||
retreat: 1, | ||
regulationMark: "H" | ||
} | ||
|
||
export default card |
Oops, something went wrong.