mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-13 17:52:22 +00:00
feat(backgrounds): add Set2 bgs
This commit is contained in:
parent
8a7ac32500
commit
6e46b7670c
9 changed files with 3564 additions and 3511 deletions
2
dist/habitrpg-shared.css
vendored
2
dist/habitrpg-shared.css
vendored
File diff suppressed because one or more lines are too long
14
dist/habitrpg-shared.js
vendored
14
dist/habitrpg-shared.js
vendored
|
|
@ -12016,6 +12016,20 @@ api.backgrounds = {
|
|||
text: t('backgroundForestText'),
|
||||
notes: t('backgroundForestNotes')
|
||||
}
|
||||
},
|
||||
backgrounds072014: {
|
||||
open_waters: {
|
||||
text: t('backgroundOpenWatersText'),
|
||||
notes: t('backgroundOpenWatersNotes')
|
||||
},
|
||||
coral_reef: {
|
||||
text: t('backgroundCoralReefText'),
|
||||
notes: t('backgroundCoralReefNotes')
|
||||
},
|
||||
seafarer_ship: {
|
||||
text: t('backgroundSeafarerShipText'),
|
||||
notes: t('backgroundSeafarerShipNotes')
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
7033
dist/spritesmith.css
vendored
7033
dist/spritesmith.css
vendored
File diff suppressed because it is too large
Load diff
BIN
dist/spritesmith.png
vendored
BIN
dist/spritesmith.png
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 688 KiB After Width: | Height: | Size: 701 KiB |
BIN
img/sprites/spritesmith/backgrounds/background_coral_reef.png
Normal file
BIN
img/sprites/spritesmith/backgrounds/background_coral_reef.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.5 KiB |
BIN
img/sprites/spritesmith/backgrounds/background_open_waters.png
Normal file
BIN
img/sprites/spritesmith/backgrounds/background_open_waters.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 KiB |
BIN
img/sprites/spritesmith/backgrounds/background_seafarer_ship.png
Normal file
BIN
img/sprites/spritesmith/backgrounds/background_seafarer_ship.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
|
|
@ -7,5 +7,13 @@
|
|||
"backgroundFairyRingText":"Fairy Ring",
|
||||
"backgroundFairyRingNotes":"Dance in a fairy ring.",
|
||||
"backgroundForestText":"Forest",
|
||||
"backgroundForestNotes":"Stroll through a summer forest."
|
||||
"backgroundForestNotes":"Stroll through a summer forest.",
|
||||
|
||||
"backgrounds072014": "SET 2: Released July 2014",
|
||||
"backgroundCoralReefText":"Coral Reef",
|
||||
"backgroundCoralReefNotes":"Swim in a coral reef.",
|
||||
"backgroundOpenWatersText":"Open Waters",
|
||||
"backgroundOpenWatersNotes":"Enjoy the open waters.",
|
||||
"backgroundSeafarerShipText":"Seafarer Ship",
|
||||
"backgroundSeafarerShipNotes":"Sail aboard a Seafarer Ship."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -946,14 +946,24 @@ _.each api.quests, (v,key) ->
|
|||
api.backgrounds =
|
||||
backgrounds062014:
|
||||
beach:
|
||||
text: t('backgroundBeachText')
|
||||
text: t('backgroundBeachText')
|
||||
notes: t('backgroundBeachNotes')
|
||||
fairy_ring:
|
||||
text: t('backgroundFairyRingText')
|
||||
text: t('backgroundFairyRingText')
|
||||
notes: t('backgroundFairyRingNotes')
|
||||
forest:
|
||||
text: t('backgroundForestText')
|
||||
text: t('backgroundForestText')
|
||||
notes: t('backgroundForestNotes')
|
||||
backgrounds072014:
|
||||
open_waters:
|
||||
text: t('backgroundOpenWatersText')
|
||||
notes: t('backgroundOpenWatersNotes')
|
||||
coral_reef:
|
||||
text: t('backgroundCoralReefText')
|
||||
notes: t('backgroundCoralReefNotes')
|
||||
seafarer_ship:
|
||||
text: t('backgroundSeafarerShipText')
|
||||
notes: t('backgroundSeafarerShipNotes')
|
||||
|
||||
repeat = {m:true,t:true,w:true,th:true,f:true,s:true,su:true}
|
||||
api.userDefaults =
|
||||
|
|
|
|||
Loading…
Reference in a new issue