mirror of
https://gitlab.com/Deukhoofd/BattleSim.git
synced 2025-10-28 10:10:04 +00:00
Lots of stuff
This commit is contained in:
11
client/views/modals/achievements.jade
Normal file
11
client/views/modals/achievements.jade
Normal file
@@ -0,0 +1,11 @@
|
||||
#achievements-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 Achievements Earned
|
||||
.modal-body
|
||||
for achievement in achievements
|
||||
.achievement.clearfix
|
||||
img(src=window.AchievementSprite(achievement))
|
||||
.achievement-info
|
||||
h2= achievement.name
|
||||
p= achievement.condition
|
||||
23
client/views/modals/credits.jade
Normal file
23
client/views/modals/credits.jade
Normal file
@@ -0,0 +1,23 @@
|
||||
#credits-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 PokeBattle Credits
|
||||
.modal-body
|
||||
ul
|
||||
li
|
||||
| Pokémon is © 1995-2016 Nintendo. All Pokemon names and sprites are
|
||||
| owned by them.
|
||||
li
|
||||
| Huge thanks to PokeBattle.com for developing this awesome engine
|
||||
| You can find their engine at <a href="http://github.com/sarenji/pokebattle-sim">this GitHub repo!</a>
|
||||
li
|
||||
| Big thanks to Suzey and the rest of the devteam of Insurgence for
|
||||
| creating Insurgence
|
||||
li
|
||||
| Major thanks to my faithful testers who helped me make sure this thing
|
||||
| actually worked
|
||||
li
|
||||
| And of course thanks to you, the user, for actually using this thing,
|
||||
| we love you
|
||||
.modal-footer
|
||||
button.button(data-dismiss="modal", aria-hidden="true") Wow, these people rule!
|
||||
7
client/views/modals/errors.jade
Normal file
7
client/views/modals/errors.jade
Normal file
@@ -0,0 +1,7 @@
|
||||
#errors-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3= title
|
||||
.modal-body!= body
|
||||
.modal-footer
|
||||
button.button(data-dismiss="modal", aria-hidden="true") Back
|
||||
10
client/views/modals/export_team.jade
Normal file
10
client/views/modals/export_team.jade
Normal file
@@ -0,0 +1,10 @@
|
||||
#export-team-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 Your exported team
|
||||
.modal-body
|
||||
form.form-horizontal
|
||||
.control-group
|
||||
textarea.exported-team.textarea_modal
|
||||
.modal-footer
|
||||
button.button(data-dismiss="modal", aria-hidden="true") Close
|
||||
12
client/views/modals/import_team.jade
Normal file
12
client/views/modals/import_team.jade
Normal file
@@ -0,0 +1,12 @@
|
||||
#import-team-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 Import a team from PS/PO
|
||||
.modal-body
|
||||
.form-errors.alert.alert-error.hidden
|
||||
form.form-horizontal
|
||||
.control-group
|
||||
textarea.imported-team.textarea_modal(placeholder = "Paste your team here")
|
||||
.modal-footer
|
||||
button.button.button_blue.import-team-submit Import
|
||||
button.button(data-dismiss="modal", aria-hidden="true") Close
|
||||
13
client/views/modals/new_client.jade
Normal file
13
client/views/modals/new_client.jade
Normal file
@@ -0,0 +1,13 @@
|
||||
#new_client.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 A new client appeared!
|
||||
.modal-body
|
||||
p
|
||||
strong Your client is outdated!
|
||||
| Please refresh to upgrade to the latest version of the client. If you
|
||||
| choose not to refresh, you may see odd behavior. If you were editing
|
||||
| a team, you should save the team first, then manually refresh.
|
||||
.modal-footer
|
||||
button.button.button_blue.button_refresh Refresh
|
||||
button.button(data-dismiss="modal", aria-hidden="true") I'll refresh later
|
||||
14
client/views/modals/teams_differ.jade
Normal file
14
client/views/modals/teams_differ.jade
Normal file
@@ -0,0 +1,14 @@
|
||||
.teams-differ-modal.modal.hide
|
||||
.modal-header
|
||||
button.close(type="button", data-dismiss="modal", aria-hidden="true") ×
|
||||
h3 Our teams differ!
|
||||
.modal-body
|
||||
p
|
||||
strong Your copy of this team differs from ours!
|
||||
p
|
||||
| Perhaps you edited this team on a different computer? Or disconnected
|
||||
| during a save? Either way, this is the team we have:
|
||||
textarea.remote-team.textarea_modal= teamText
|
||||
.modal-footer
|
||||
button.button.button_blue(data-dismiss="modal", aria-hidden="true") Keep local changes
|
||||
button.button.button_override Use remote version
|
||||
Reference in New Issue
Block a user