-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
097391c
commit 3d2d366
Showing
239 changed files
with
4,654 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/resources/assets/evenmoreinstruments/blockstates/keyboard.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"variants": { | ||
|
||
"part=left,facing=north": { | ||
"model": "evenmoreinstruments:block/keyboard_left", | ||
"y": 0 | ||
}, | ||
"part=left,facing=east": { | ||
"model": "evenmoreinstruments:block/keyboard_left", | ||
"y": 90 | ||
}, | ||
"part=left,facing=south": { | ||
"model": "evenmoreinstruments:block/keyboard_left", | ||
"y": 180 | ||
}, | ||
"part=left,facing=west": { | ||
"model": "evenmoreinstruments:block/keyboard_left", | ||
"y": 270 | ||
}, | ||
|
||
"part=right": { | ||
"model": "evenmoreinstruments:block/keyboard_right" | ||
} | ||
|
||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/resources/assets/evenmoreinstruments/blockstates/keyboard_stand.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"variants": { | ||
|
||
"has_keyboard=false,facing=north": { | ||
"model": "evenmoreinstruments:block/keyboard_stand", | ||
"y": 0 | ||
}, | ||
"has_keyboard=false,facing=east": { | ||
"model": "evenmoreinstruments:block/keyboard_stand", | ||
"y": 90 | ||
}, | ||
"has_keyboard=false,facing=south": { | ||
"model": "evenmoreinstruments:block/keyboard_stand", | ||
"y": 180 | ||
}, | ||
"has_keyboard=false,facing=west": { | ||
"model": "evenmoreinstruments:block/keyboard_stand", | ||
"y": 270 | ||
}, | ||
|
||
"has_keyboard=true,facing=north": { | ||
"model": "evenmoreinstruments:block/keyboard_stand_with_keyboard", | ||
"y": 0 | ||
}, | ||
"has_keyboard=true,facing=east": { | ||
"model": "evenmoreinstruments:block/keyboard_stand_with_keyboard", | ||
"y": 90 | ||
}, | ||
"has_keyboard=true,facing=south": { | ||
"model": "evenmoreinstruments:block/keyboard_stand_with_keyboard", | ||
"y": 180 | ||
}, | ||
"has_keyboard=true,facing=west": { | ||
"model": "evenmoreinstruments:block/keyboard_stand_with_keyboard", | ||
"y": 270 | ||
} | ||
|
||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/main/resources/assets/evenmoreinstruments/blockstates/looper.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"variants": { | ||
|
||
"playing=false,facing=north": { | ||
"model": "evenmoreinstruments:block/looper_idle", | ||
"y": 0 | ||
}, | ||
"playing=false,facing=east": { | ||
"model": "evenmoreinstruments:block/looper_idle", | ||
"y": 90 | ||
}, | ||
"playing=false,facing=south": { | ||
"model": "evenmoreinstruments:block/looper_idle", | ||
"y": 180 | ||
}, | ||
"playing=false,facing=west": { | ||
"model": "evenmoreinstruments:block/looper_idle", | ||
"y": 270 | ||
}, | ||
|
||
|
||
"playing=true,facing=north": { | ||
"model": "evenmoreinstruments:block/looper_playing", | ||
"y": 0 | ||
}, | ||
"playing=true,facing=east": { | ||
"model": "evenmoreinstruments:block/looper_playing", | ||
"y": 90 | ||
}, | ||
"playing=true,facing=south": { | ||
"model": "evenmoreinstruments:block/looper_playing", | ||
"y": 180 | ||
}, | ||
"playing=true,facing=west": { | ||
"model": "evenmoreinstruments:block/looper_playing", | ||
"y": 270 | ||
} | ||
|
||
} | ||
} |
Binary file not shown.
38 changes: 38 additions & 0 deletions
38
src/main/resources/assets/evenmoreinstruments/lang/en_us.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"evenmoreinstruments.keymaps": "Even More Instruments! Keymaps", | ||
"evenmoreinstruments.keymaps.violin_type_modifier": "Lengthen/Shorten Violin Sound", | ||
|
||
"itemGroup.evenmoreinstruments.instrument_accessories": "Instrument Accessories", | ||
|
||
|
||
"item.evenmoreinstruments.violin": "Violin", | ||
"item.evenmoreinstruments.guitar": "Guitar", | ||
"item.evenmoreinstruments.trombone": "Trombone", | ||
"item.evenmoreinstruments.note_block_instrument": "%s Note Block Instrument", | ||
|
||
"item.evenmoreinstruments.looper_adapter": "Looper Wireless Adapter", | ||
"item.evenmoreinstruments.looper_adapter.select_instrument": "Looper connected successfully. Please select an instrument to pair with it.", | ||
"item.evenmoreinstruments.looper_adapter.select_looper": "Instrument connected successfully. Please select a looper to pair with it.", | ||
|
||
"block.evenmoreinstruments.keyboard": "Keyboard", | ||
"block.evenmoreinstruments.keyboard_stand": "Keyboard Stand", | ||
|
||
|
||
"label.evenmoreinstruments.violin_options": "Violin Options", | ||
"button.evenmoreinstruments.violin.soundType": "Violin Note Length", | ||
"button.evenmoreinstruments.violin.soundType.half_note": "Half Note", | ||
"button.evenmoreinstruments.violin.soundType.full_note": "Full Note", | ||
|
||
|
||
"block.evenmoreinstruments.looper": "Looper", | ||
|
||
"evenmoreinstruments.looper.success_pair": "Paired instrument successfully!", | ||
"evenmoreinstruments.looper.pair_conflict": "This Looper already has recorded footage!", | ||
"evenmoreinstruments.looper.no_footage": "This looper has no footage! Use an instrument to start recording", | ||
|
||
"button.evenmoreinstruments.record": "Record", | ||
"button.evenmoreinstruments.stop": "Stop", | ||
|
||
"gamerule.evenmoreinstruments_looperMaxNotes": "Looper Max Notes", | ||
"gamerule.evenmoreinstruments_looperMaxNotes.description": "Defines the maxumin amount of notes a looper can have. Any value below 0 will make the looper uncappable." | ||
} |
39 changes: 39 additions & 0 deletions
39
src/main/resources/assets/evenmoreinstruments/lang/he_il.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"evenmoreinstruments.keymaps": "הגדרות המקשים של 'אפילו יותר כלי נגינה!'", | ||
"evenmoreinstruments.keymaps.violin_type_modifier": "הארך/קצר את אורך צליל הכינור", | ||
|
||
"itemGroup.evenmoreinstruments.instrument_accessories": "אביזרי כלי נגינה", | ||
|
||
|
||
"item.evenmoreinstruments.violin": "כינור", | ||
"item.evenmoreinstruments.guitar": "גיטרה", | ||
"item.evenmoreinstruments.trombone": "טרומבון", | ||
"item.evenmoreinstruments.note_block_instrument": "בלוק הצליל של %s", | ||
|
||
"item.evenmoreinstruments.looper_adapter": "מתאם אלחוטי ללופר", | ||
"item.evenmoreinstruments.looper_adapter.select_instrument": "לופר חובר בהצלחה. אנא בחר כלי נגינה לתאם עימו.", | ||
"item.evenmoreinstruments.looper_adapter.select_looper": "כלי נגינה חובר בהצלחה. אנא בחר לופר לתאם עימו.", | ||
|
||
|
||
"block.evenmoreinstruments.keyboard": "אורגן", | ||
"block.evenmoreinstruments.keyboard_stand": "מעמד לאורגן", | ||
|
||
|
||
"label.evenmoreinstruments.violin_options": "אפשרויות הכינור", | ||
"button.evenmoreinstruments.violin.soundType": "אורך צליל הכינור", | ||
"button.evenmoreinstruments.violin.soundType.half_note": "שתי פעמות", | ||
"button.evenmoreinstruments.violin.soundType.full_note": "ארבעה פעמות", | ||
|
||
|
||
"block.evenmoreinstruments.looper": "לופר", | ||
|
||
"evenmoreinstruments.looper.success_pair": "כלי הנגינה תואם בהצלחה!", | ||
"evenmoreinstruments.looper.pair_conflict": "לופר זה הינו תפוס!", | ||
"evenmoreinstruments.looper.no_footage": "ללופר זה אין אף הקלטה! השתמש בכלי נגינה כדיי להתחיל להקליט", | ||
|
||
"button.evenmoreinstruments.record": "הקלט", | ||
"button.evenmoreinstruments.stop": "עצור", | ||
|
||
"gamerule.evenmoreinstruments_looperMaxNotes": "מגבלת התווים ללופר", | ||
"gamerule.evenmoreinstruments_looperMaxNotes.description": "מספר התווים שלופר יכול להכיל. כל ערך מתחת ל- 0 יגרום ללופר להיות חסר כל מגבלות." | ||
} |
Oops, something went wrong.