mirror of
https://gitlab.com/Deukhoofd/BattleSim.git
synced 2025-10-27 18:00:03 +00:00
Removed alt button, set level to max level for generation on team creation as to prevent confusion. Feature Complete for 1.0 beta.
This commit is contained in:
@@ -5496,6 +5496,7 @@
|
||||
this.changeEv = __bind(this.changeEv, this);
|
||||
this.focusEv = __bind(this.focusEv, this);
|
||||
this.changeIv = __bind(this.changeIv, this);
|
||||
this.changeLevel2 = __bind(this.changeLevel2, this);
|
||||
this.changeLevel = __bind(this.changeLevel, this);
|
||||
this.changeGender = __bind(this.changeGender, this);
|
||||
this.changeItem = __bind(this.changeItem, this);
|
||||
@@ -5750,8 +5751,14 @@
|
||||
if (value < 1) {
|
||||
value = 1;
|
||||
}
|
||||
$input.val(value);
|
||||
return this.pokemon.set("level", value);
|
||||
return this.changeLevel2(value);
|
||||
};
|
||||
|
||||
PokemonEditView.prototype.changeLevel2 = function(level) {
|
||||
var $levelBox;
|
||||
$levelBox = $(".selected_level");
|
||||
$levelBox.val(level);
|
||||
return this.pokemon.set("level", level);
|
||||
};
|
||||
|
||||
PokemonEditView.prototype.changeIv = function(e) {
|
||||
@@ -6031,6 +6038,9 @@
|
||||
this.renderStats();
|
||||
this.renderMoves();
|
||||
this.renderFormat();
|
||||
if (typeof this.pokemon.get("level") === "undefined") {
|
||||
this.changeLevel2(this.generation.maxLevel);
|
||||
}
|
||||
$elements = this.$el.find("input, select").not(".species input, .species select");
|
||||
$elements.prop("disabled", this.pokemon.isNull);
|
||||
setSelectizeDisabled($elements, this.pokemon.isNull);
|
||||
|
||||
@@ -626,7 +626,7 @@ buf.push("<p class=\"logo\"></p><h2>Chat</h2><ul class=\"nav nav_rooms\"><li cla
|
||||
this["JST"]["new_battle"] = function anonymous(locals
|
||||
/**/) {
|
||||
var buf = [];
|
||||
var locals_ = (locals || {}),window = locals_.window,defaultClauses = locals_.defaultClauses;buf.push("<p><strong>In-battle display name:</strong></p><div class=\"alt-input clearfix hidden\"><div class=\"input-wrapper\"><input type=\"text\"/></div><div class=\"buttons-wrapper\"><button class=\"button add-button\">Add</button><button class=\"button cancel-button\">Cancel</button></div></div><div class=\"alt-dropdown-section dropdown\"><div data-toggle=\"dropdown\" class=\"select select-alt\"></div><ul role=\"menu\" class=\"dropdown-menu alt-dropdown\"></ul></div><p><strong>Format:</strong></p><div class=\"dropdown\"><div data-toggle=\"dropdown\" class=\"select select-format\"></div><ul role=\"menu\" class=\"dropdown-menu format-dropdown\">");
|
||||
var locals_ = (locals || {}),window = locals_.window,defaultClauses = locals_.defaultClauses;buf.push("<p><strong>Format:</strong></p><div class=\"dropdown\"><div data-toggle=\"dropdown\" class=\"select select-format\"></div><ul role=\"menu\" class=\"dropdown-menu format-dropdown\">");
|
||||
var allformats = window.PokeBattle.conditions.Formats()
|
||||
// iterate allformats
|
||||
;(function(){
|
||||
|
||||
Reference in New Issue
Block a user