update faint-phase after merge
4
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -21,7 +21,7 @@ body:
|
|||||||
- type: textarea
|
- type: textarea
|
||||||
id: session-file
|
id: session-file
|
||||||
attributes:
|
attributes:
|
||||||
label: User data export file
|
label: Session export file
|
||||||
description: Open Menu → ManageData → Export Session → Select slot. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)).
|
description: Open Menu → ManageData → Export Session → Select slot. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)).
|
||||||
placeholder: Focus me and then drop your file here (or use the upload button at the bottom)
|
placeholder: Focus me and then drop your file here (or use the upload button at the bottom)
|
||||||
validations:
|
validations:
|
||||||
@ -29,7 +29,7 @@ body:
|
|||||||
- type: textarea
|
- type: textarea
|
||||||
id: data-file
|
id: data-file
|
||||||
attributes:
|
attributes:
|
||||||
label: Session export file
|
label: User data export file
|
||||||
description: Open Menu → ManageData → Export Data. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)).
|
description: Open Menu → ManageData → Export Data. The file should now be in your `/Downloads` directory. Change the file extension type from `.prsv` to `.txt` (How to [Windows](https://www.guidingtech.com/how-to-change-file-type-on-windows/) | [Mac](https://support.apple.com/guide/mac-help/show-or-hide-filename-extensions-on-mac-mchlp2304/mac) | [iOS](https://www.guidingtech.com/change-file-type-extension-on-iphone/)).
|
||||||
placeholder: Focus me and then drop your file here (or use the upload button at the bottom)
|
placeholder: Focus me and then drop your file here (or use the upload button at the bottom)
|
||||||
validations:
|
validations:
|
||||||
|
2
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
@ -35,5 +35,3 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Additional context
|
label: Additional context
|
||||||
description: Add any other context or screenshots about the feature request here.
|
description: Add any other context or screenshots about the feature request here.
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
23
index.css
@ -69,7 +69,9 @@ input:-internal-autofill-selected {
|
|||||||
--controls-padding: 1rem;
|
--controls-padding: 1rem;
|
||||||
|
|
||||||
--controls-size-with-padding: calc(var(--controls-size) + var(--controls-padding));
|
--controls-size-with-padding: calc(var(--controls-size) + var(--controls-padding));
|
||||||
|
--controls-size-with-wide-padding: calc(var(--controls-size) *1.2 + var(--controls-padding));
|
||||||
--control-group-extra-size: calc(var(--controls-size) * 0.8);
|
--control-group-extra-size: calc(var(--controls-size) * 0.8);
|
||||||
|
--control-group-extra-wide-size: calc(var(--controls-size) * 1.2);
|
||||||
|
|
||||||
--control-group-extra-2-offset: calc(var(--controls-size-with-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2);
|
--control-group-extra-2-offset: calc(var(--controls-size-with-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2);
|
||||||
--control-group-extra-1-offset: calc(var(--controls-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2);
|
--control-group-extra-1-offset: calc(var(--controls-padding) + (var(--controls-size) - var(--control-group-extra-size)) / 2);
|
||||||
@ -117,25 +119,31 @@ input:-internal-autofill-selected {
|
|||||||
width: var(--control-group-extra-size);
|
width: var(--control-group-extra-size);
|
||||||
height: var(--control-group-extra-size);
|
height: var(--control-group-extra-size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide buttons on specific UIs */
|
/* Hide buttons on specific UIs */
|
||||||
|
|
||||||
/* Show #cycleForm and #cycleShiny only on STARTER_SELECT and SETTINGS */
|
/* Show #apadPreviousTab and #apadNextTab only in settings, except in touch configuration panel */
|
||||||
#touchControls:not([data-ui-mode='STARTER_SELECT']):not([data-ui-mode^='SETTINGS']) #apadCycleForm,
|
#touchControls:not([data-ui-mode^='SETTINGS']) #apadPreviousTab,
|
||||||
#touchControls:not([data-ui-mode='STARTER_SELECT']):not([data-ui-mode^='SETTINGS']) #apadCycleShiny {
|
#touchControls:not([data-ui-mode^='SETTINGS']) #apadNextTab,
|
||||||
|
#touchControls:is(.config-mode) #apadPreviousTab,
|
||||||
|
#touchControls:is(.config-mode) #apadNextTab {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Show #apadInfo only in battle */
|
/* Show #apadInfo only in battle */
|
||||||
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']) #apadInfo {
|
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']):not([data-ui-mode='TARGET_SELECT']) #apadInfo {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Show #apadInfo only in battle and target select */
|
/* Show #apadStats only in battle and shop */
|
||||||
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']):not([data-ui-mode='TARGET_SELECT']):not([data-ui-mode='MODIFIER_SELECT']) #apadStats {
|
#touchControls:not([data-ui-mode='COMMAND']):not([data-ui-mode='FIGHT']):not([data-ui-mode='BALL']):not([data-ui-mode='TARGET_SELECT']):not([data-ui-mode='MODIFIER_SELECT']) #apadStats {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */
|
/* Show cycle buttons only on STARTER_SELECT and on touch configuration panel */
|
||||||
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadOpenFilters,
|
||||||
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleForm,
|
||||||
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleShiny,
|
||||||
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature,
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleNature,
|
||||||
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleAbility,
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleAbility,
|
||||||
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender,
|
#touchControls:not(.config-mode):not([data-ui-mode='STARTER_SELECT']) #apadCycleGender,
|
||||||
@ -272,8 +280,8 @@ input:-internal-autofill-selected {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#control-group-cancel {
|
#control-group-cancel {
|
||||||
right: var(--controls-size-with-padding);
|
right: var(--controls-size-with-wide-padding);
|
||||||
bottom: var(--controls-padding);;
|
bottom: var(--controls-padding);
|
||||||
}
|
}
|
||||||
|
|
||||||
#control-group-extra-1 {
|
#control-group-extra-1 {
|
||||||
@ -282,6 +290,7 @@ input:-internal-autofill-selected {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#control-group-extra-2 {
|
#control-group-extra-2 {
|
||||||
|
width: var(--control-group-extra-wide-size);
|
||||||
right: var(--control-group-extra-2-offset);
|
right: var(--control-group-extra-2-offset);
|
||||||
bottom: var(--control-group-extra-2-offset);
|
bottom: var(--control-group-extra-2-offset);
|
||||||
}
|
}
|
||||||
|
24
index.html
@ -96,36 +96,50 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="control-group-extra-1" class="control-group control-group-extra">
|
<div id="control-group-extra-1" class="control-group control-group-extra">
|
||||||
<div id="apadCycleShiny" class="apad-button apad-square apad-small" data-key="CYCLE_SHINY">
|
<!-- buttons to navigate settings tabs -->
|
||||||
|
<div id="apadPreviousTab" class="apad-button apad-square apad-small" data-key="CYCLE_FORM">
|
||||||
|
<span class="apad-label">F</span>
|
||||||
|
</div>
|
||||||
|
<div id="apadNextTab" class="apad-button apad-square apad-small" data-key="CYCLE_SHINY">
|
||||||
<span class="apad-label">R</span>
|
<span class="apad-label">R</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="apadCycleVariant" class="apad-button apad-square apad-small" data-key="V">
|
<!-- buttons to open filter menu in starter select -->
|
||||||
<span class="apad-label">V</span>
|
<div id="apadOpenFilters" class="apad-button apad-rectangle apad-small" data-key="STATS">
|
||||||
</div>
|
|
||||||
<div id="apadStats" class="apad-button apad-rectangle apad-small" data-key="STATS">
|
|
||||||
<span class="apad-label">C</span>
|
<span class="apad-label">C</span>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- main menu button -->
|
||||||
<div id="apadMenu" class="apad-button apad-rectangle apad-small" data-key="MENU">
|
<div id="apadMenu" class="apad-button apad-rectangle apad-small" data-key="MENU">
|
||||||
<span class="apad-label">Menu</span>
|
<span class="apad-label">Menu</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="control-group-extra-2" class="control-group control-group-extra">
|
<div id="control-group-extra-2" class="control-group control-group-extra">
|
||||||
|
<!-- buttons to cycle through pokemon characteristics in starter select -->
|
||||||
<div id="apadCycleForm" class="apad-button apad-square apad-small" data-key="CYCLE_FORM">
|
<div id="apadCycleForm" class="apad-button apad-square apad-small" data-key="CYCLE_FORM">
|
||||||
<span class="apad-label">F</span>
|
<span class="apad-label">F</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="apadCycleGender" class="apad-button apad-square apad-small" data-key="CYCLE_GENDER">
|
<div id="apadCycleGender" class="apad-button apad-square apad-small" data-key="CYCLE_GENDER">
|
||||||
<span class="apad-label">G</span>
|
<span class="apad-label">G</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="apadCycleShiny" class="apad-button apad-square apad-small" data-key="CYCLE_SHINY">
|
||||||
|
<span class="apad-label">R</span>
|
||||||
|
</div>
|
||||||
<div id="apadCycleAbility" class="apad-button apad-square apad-small" data-key="CYCLE_ABILITY">
|
<div id="apadCycleAbility" class="apad-button apad-square apad-small" data-key="CYCLE_ABILITY">
|
||||||
<span class="apad-label">E</span>
|
<span class="apad-label">E</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="apadCycleNature" class="apad-button apad-square apad-small" data-key="CYCLE_NATURE">
|
<div id="apadCycleNature" class="apad-button apad-square apad-small" data-key="CYCLE_NATURE">
|
||||||
<span class="apad-label">N</span>
|
<span class="apad-label">N</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="apadCycleVariant" class="apad-button apad-square apad-small" data-key="V">
|
||||||
|
<span class="apad-label">V</span>
|
||||||
|
</div>
|
||||||
|
<!-- buttons to display battle-specific information -->
|
||||||
<div id="apadInfo" class="apad-button apad-rectangle apad-small" data-key="V">
|
<div id="apadInfo" class="apad-button apad-rectangle apad-small" data-key="V">
|
||||||
<span class="apad-label">V</span>
|
<span class="apad-label">V</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="apadStats" class="apad-button apad-rectangle apad-small" data-key="STATS">
|
||||||
|
<span class="apad-label">C</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
BIN
public/images/events/august-variant-update.png
Normal file
After Width: | Height: | Size: 370 KiB |
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 642 B |
Before Width: | Height: | Size: 666 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 675 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 636 B |
Before Width: | Height: | Size: 627 B |
Before Width: | Height: | Size: 642 B |
BIN
public/images/items/ultranecrozium_z.png
Normal file
After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 284 B After Width: | Height: | Size: 314 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 701 B |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 934 B After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 880 B After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 9.2 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 457 B After Width: | Height: | Size: 972 B |
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 585 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 419 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 670 B After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 512 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 870 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 972 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 939 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 490 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 577 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1009 B After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1014 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 758 B After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 863 B |
Before Width: | Height: | Size: 9.9 KiB After Width: | Height: | Size: 23 KiB |