1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-10-27 18:00:03 +00:00

Fixed major issue with user being undefined on battle pairing, reduced sunlight effect by 40%, reduced "a high level match is being played" spam by 75%

This commit is contained in:
Deukhoofd
2016-02-24 13:02:28 +01:00
parent ed22806774
commit d243354cc2
20 changed files with 18 additions and 16 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -327,7 +327,7 @@ h1{font-family:"PT Sans Narrow","Helvetica Neue",sans-serif;font-size:2em;font-w
.battle .battle_overlays .battle_overlay.weather.rain{background:rgba(0,48,196,0.3)}
.battle .battle_overlays .battle_overlay.weather.hail{background:rgba(128,255,255,0.3)}
.battle .battle_overlays .battle_overlay.weather.sand{background:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(128,64,0,0.3)), color-stop(1, rgba(64,32,48,0.5)));background:-webkit-linear-gradient(top, rgba(128,64,0,0.3) 0, rgba(64,32,48,0.5) 100%);background:-moz-linear-gradient(top, rgba(128,64,0,0.3) 0, rgba(64,32,48,0.5) 100%);background:-o-linear-gradient(top, rgba(128,64,0,0.3) 0, rgba(64,32,48,0.5) 100%);background:-ms-linear-gradient(top, rgba(128,64,0,0.3) 0, rgba(64,32,48,0.5) 100%);background:linear-gradient(top, rgba(128,64,0,0.3) 0, rgba(64,32,48,0.5) 100%)}
.battle .battle_overlays .battle_overlay.weather.sun{background:rgba(255,196,64,0.3)}
.battle .battle_overlays .battle_overlay.weather.sun{opacity:.6 !important;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)" !important;filter:alpha(opacity=60) !important;background:rgba(255,196,64,0.3)}
.battle .battle_pane{position:absolute;width:400px;height:300px;top:0;left:100px;}
.battle .battle_pane .pokemon.bottom .pokemon-info{bottom:35%;left:200px}
.battle .battle_pane .pokemon.bottom .sprite.fade{position:absolute;left:-20px;opacity:.3;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";filter:alpha(opacity=30)}

View File

@@ -1863,7 +1863,7 @@
};
slugSpecies = slugify(this.get('species'));
slugForme = slugify(this.get('forme'));
return "//pokebattle.com/dex/pokemon/" + slugSpecies + "/" + slugForme;
return "//wiki.p-insurgence.com/" + slugSpecies;
};
Pokemon.prototype.getIllu = function() {

View File

@@ -1863,7 +1863,7 @@
};
slugSpecies = slugify(this.get('species'));
slugForme = slugify(this.get('forme'));
return "//pokebattle.com/dex/pokemon/" + slugSpecies + "/" + slugForme;
return "//wiki.p-insurgence.com/" + slugSpecies;
};
Pokemon.prototype.getIllu = function() {