mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-13 03:42:18 +02:00
Compare commits
4 Commits
a2996cdd66
...
5f82449120
Author | SHA1 | Date | |
---|---|---|---|
|
5f82449120 | ||
|
96491039fb | ||
|
6e286257d3 | ||
|
8b920f2e60 |
File diff suppressed because it is too large
Load Diff
@ -3410,9 +3410,11 @@ export function initAbilities() {
|
||||
new Ability(Abilities.CUTE_CHARM, 3)
|
||||
.attr(PostDefendContactApplyTagChanceAbAttr, 30, BattlerTagType.INFATUATED),
|
||||
new Ability(Abilities.PLUS, 3)
|
||||
.unimplemented(),
|
||||
.conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), BattleStatMultiplierAbAttr, BattleStat.SPATK, 1.5)
|
||||
.ignorable(),
|
||||
new Ability(Abilities.MINUS, 3)
|
||||
.unimplemented(),
|
||||
.conditionalAttr(p => p.scene.currentBattle.double && [Abilities.PLUS, Abilities.MINUS].some(a => p.getAlly().hasAbility(a)), BattleStatMultiplierAbAttr, BattleStat.SPATK, 1.5)
|
||||
.ignorable(),
|
||||
new Ability(Abilities.FORECAST, 3)
|
||||
.attr(UncopiableAbilityAbAttr)
|
||||
.attr(NoFusionAbilityAbAttr)
|
||||
|
@ -2150,8 +2150,8 @@ export function initSpecies() {
|
||||
new PokemonForm("Ultra", "ultra", Type.PSYCHIC, Type.DRAGON, 7.5, 230, Abilities.NEUROFORCE, Abilities.NONE, Abilities.NONE, 754, 97, 167, 97, 167, 97, 129, 255, 0, 300),
|
||||
),
|
||||
new PokemonSpecies(Species.MAGEARNA, 7, false, false, true, "Artificial Pokémon", Type.STEEL, Type.FAIRY, 1, 80.5, Abilities.SOUL_HEART, Abilities.NONE, Abilities.NONE, 600, 80, 95, 115, 130, 115, 65, 3, 0, 300, GrowthRate.SLOW, null, false, false,
|
||||
new PokemonForm("Normal", "", Type.STEEL, Type.FAIRY, 1, 80.5, Abilities.SOUL_HEART, Abilities.NONE, Abilities.NONE, 600, 80, 95, 115, 130, 115, 65, 3, 0, 300),
|
||||
new PokemonForm("Original", "original", Type.STEEL, Type.FAIRY, 1, 80.5, Abilities.SOUL_HEART, Abilities.NONE, Abilities.NONE, 600, 80, 95, 115, 130, 115, 65, 3, 0, 300),
|
||||
new PokemonForm("Normal", "", Type.STEEL, Type.FAIRY, 1, 80.5, Abilities.SOUL_HEART, Abilities.NONE, Abilities.NONE, 600, 80, 95, 115, 130, 115, 65, 3, 0, 300, false, null, true),
|
||||
new PokemonForm("Original", "original", Type.STEEL, Type.FAIRY, 1, 80.5, Abilities.SOUL_HEART, Abilities.NONE, Abilities.NONE, 600, 80, 95, 115, 130, 115, 65, 3, 0, 300, false, null, true),
|
||||
),
|
||||
new PokemonSpecies(Species.MARSHADOW, 7, false, false, true, "Gloomdweller Pokémon", Type.FIGHTING, Type.GHOST, 0.7, 22.2, Abilities.TECHNICIAN, Abilities.NONE, Abilities.NONE, 600, 90, 125, 80, 90, 90, 125, 3, 0, 300, GrowthRate.SLOW, null, false, true,
|
||||
new PokemonForm("Normal", "", Type.FIGHTING, Type.GHOST, 0.7, 22.2, Abilities.TECHNICIAN, Abilities.NONE, Abilities.NONE, 600, 90, 125, 80, 90, 90, 125, 3, 0, 300),
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||||
|
||||
export const biome: SimpleTranslationEntries = {
|
||||
"unknownLocation": "Dans un endroit inconnu",
|
||||
"unknownLocation": "vous avez oublié où",
|
||||
"TOWN": "Ville",
|
||||
"PLAINS": "Plaines",
|
||||
"GRASS": "Herbes",
|
||||
@ -17,9 +17,9 @@ export const biome: SimpleTranslationEntries = {
|
||||
"BADLANDS": "Terres Sauvages",
|
||||
"CAVE": "Grotte",
|
||||
"DESERT": "Desert",
|
||||
"ICE_CAVE": "Caverne Glaciale",
|
||||
"ICE_CAVE": "Caverne Gelée",
|
||||
"MEADOW": "Prairie",
|
||||
"POWER_PLANT": "Centrale Électrique",
|
||||
"POWER_PLANT": "Centrale",
|
||||
"VOLCANO": "Volcan",
|
||||
"GRAVEYARD": "Cimetière",
|
||||
"DOJO": "Dojo",
|
||||
@ -34,7 +34,7 @@ export const biome: SimpleTranslationEntries = {
|
||||
"TEMPLE": "Temple",
|
||||
"SLUM": "Bidonville",
|
||||
"SNOWY_FOREST": "Forêt Enneigée",
|
||||
"ISLAND": "Île",
|
||||
"ISLAND": "Ile",
|
||||
"LABORATORY": "Laboratoire",
|
||||
"END": "???",
|
||||
} as const;
|
||||
|
Loading…
Reference in New Issue
Block a user