Skip to content

Commit

Permalink
Add Keller_ChicoryPicture1 from v1.0.0.66
Browse files Browse the repository at this point in the history
Ref #90
  • Loading branch information
ngyikp committed Jun 1, 2023
1 parent a35cbc9 commit 01c1fd9
Show file tree
Hide file tree
Showing 5 changed files with 9,394 additions and 5 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ package-lock.json
public/_redirects
src/levelEditor/level_data.json
src/levelEditor/__mocks__/level_data.json
src/levelEditor/spriteData.json
9,390 changes: 9,389 additions & 1 deletion src/levelEditor/spriteData.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/levelEditor/types/LevelType.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import type {LevelTitleType} from './LevelTitleType';

/*
[...new Set(Object.values(window.levelData).reduce((prev, current) => {
[...new Set(Object.values(window.levelsData).reduce((prev, current) => {
return prev.concat(current.ambiance)
}, []))].sort()
Object.values(window.levelData).reduce((prev, current) => {
Object.values(window.levelsData).reduce((prev, current) => {
if (current.objects == null) {return prev;}
return current.objects.reduce((prevB, currentB) => {
Expand All @@ -22,7 +22,7 @@ Object.values(window.levelData).reduce((prev, current) => {
}, []).sort()
Object.values(window.levelData).reduce((prev, current) => {
Object.values(window.levelsData).reduce((prev, current) => {
if (current.objects == null) {return prev;}
return current.objects.reduce((prevB, currentB) => {
Expand Down
1 change: 1 addition & 0 deletions src/levelEditor/types/SpriteEntities.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const SPRITES: $ReadOnlyArray<SpriteType> = [
'JUNK_1',
'JUNK_2',
'JUNK_3',
'Keller_ChicoryPicture1',
'Team_Cherry_Mushroom_picture',
'abovedoor_decoration',
'accent_window_1',
Expand Down
1 change: 1 addition & 0 deletions src/levelEditor/types/SpriteType.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export type SpriteType =
| 'JUNK_1'
| 'JUNK_2'
| 'JUNK_3'
| 'Keller_ChicoryPicture1'
| 'Team_Cherry_Mushroom_picture'
| 'abovedoor_decoration'
| 'accent_window_1'
Expand Down

0 comments on commit 01c1fd9

Please sign in to comment.