-
Notifications
You must be signed in to change notification settings - Fork 11
Update Tome #297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Update Tome #297
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
d4a37d6
Updated TomeRepo to add new bonus
Zoma-Ancestral 9fe5fae
Added ingame indexes
Zoma-Ancestral 59f30e5
Changed impacted indexes
Zoma-Ancestral 62a7b83
Updated display order array
Zoma-Ancestral d364c5c
Added New utility log2 from lava code
Zoma-Ancestral 67f3189
Updated Tome
Zoma-Ancestral 8bf5564
Updated import for Tome
Zoma-Ancestral 184f3a1
Created Gambit
Zoma-Ancestral 2fb145f
Added Gambit to Hole
Zoma-Ancestral 6ee1970
Added DawgDen and Total opals
Zoma-Ancestral ef5df5d
Added more info in monuments
Zoma-Ancestral d393b4b
Added Jare types information
Zoma-Ancestral 20869a7
Manually updated some repo values
Zoma-Ancestral 6de1d60
Small renames
Zoma-Ancestral 0415840
Added Jar bonuses model and repo
Zoma-Ancestral 3895899
small rename
Zoma-Ancestral b85ef03
Created Jar
Zoma-Ancestral d6dba74
Imported Jar in Hole
Zoma-Ancestral 8ad3d8b
Renamed gambit level to challenge
Zoma-Ancestral f139f8b
Removed unused import
Zoma-Ancestral cb25353
Update Hole parsing
Zoma-Ancestral 025528d
Merge pull request #296 from Sludging/update/hole
Zoma-Ancestral 8c317a3
Merge remote-tracking branch 'origin/main' into update/tome
Sludging cb0dd20
Fixed some variables to please ESLint
Zoma-Ancestral a741586
Updated Gambit
Zoma-Ancestral d5604a3
Minor changes to please ESLint
Zoma-Ancestral c6ebedb
Update data/domain/tome.tsx
Zoma-Ancestral 8255818
Update data/domain/tome.tsx
Zoma-Ancestral d35ad6e
Update data/domain/tome.tsx
Zoma-Ancestral b509a1f
Updated ToTime func
Zoma-Ancestral 1c2f797
Update gambit to use toTime utility func
Zoma-Ancestral ab6a064
Updated GambitBonus init
Zoma-Ancestral 5d4cff2
Updated Most Bits Owned display format
Zoma-Ancestral File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,249 @@ | ||
| import { HoleJarBonusModel } from "../model/holeJarBonusModel"; | ||
|
|
||
| export class HoleJarBonusBase { constructor(public index: number, public data: HoleJarBonusModel) { } } | ||
|
|
||
|
|
||
| export const initHoleJarBonusRepo = () => { | ||
| return [ | ||
| new HoleJarBonusBase(0, <HoleJarBonusModel>{ | ||
| name: "ABNORMAL RUPIE", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "Rupies found are worth +{% more. @ Current Rupie Value:$" | ||
| }), | ||
| new HoleJarBonusBase(1, <HoleJarBonusModel>{ | ||
| name: "SAPPHIRE DROPLET", | ||
| bonus: 10, | ||
| filler1: "Filler", | ||
| description: "Jar production rate is +{% faster." | ||
| }), | ||
| new HoleJarBonusBase(2, <HoleJarBonusModel>{ | ||
| name: "EFFERVESCENT DIAMOND", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to find Opals in Tall Jars." | ||
| }), | ||
| new HoleJarBonusBase(3, <HoleJarBonusModel>{ | ||
| name: "TORTOLE ROCK", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "All rupies found are worth a whopping }x more!" | ||
| }), | ||
| new HoleJarBonusBase(4, <HoleJarBonusModel>{ | ||
| name: "NATURAL PEARL", | ||
| bonus: 15, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(5, <HoleJarBonusModel>{ | ||
| name: "AMETHYST HEARTSTONE", | ||
| bonus: 10, | ||
| filler1: "Filler", | ||
| description: "All skilling caverns require {% less Resources to get opals!" | ||
| }), | ||
| new HoleJarBonusBase(6, <HoleJarBonusModel>{ | ||
| name: "AMBER SQUARE", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "Rupies found are worth +{% more." | ||
| }), | ||
| new HoleJarBonusBase(7, <HoleJarBonusModel>{ | ||
| name: "VERDANT THORNS", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to find new Collectibles." | ||
| }), | ||
| new HoleJarBonusBase(8, <HoleJarBonusModel>{ | ||
| name: "VIOLENT VIOLETS", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "All buckets get }x Bucket Fill Rate!" | ||
| }), | ||
| new HoleJarBonusBase(9, <HoleJarBonusModel>{ | ||
| name: "BLUE FABERGE EGG", | ||
| bonus: 15, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to enchant a Collectible" | ||
| }), | ||
| new HoleJarBonusBase(10, <HoleJarBonusModel>{ | ||
| name: "SHADOW PRISM", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(11, <HoleJarBonusModel>{ | ||
| name: "BIG BEEF ROCK", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "}x faster Bell Ring Rate!" | ||
| }), | ||
| new HoleJarBonusBase(12, <HoleJarBonusModel>{ | ||
| name: "EMERALD ORE", | ||
| bonus: 30, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(13, <HoleJarBonusModel>{ | ||
| name: "DAWN PRISM", | ||
| bonus: 30, | ||
| filler1: "Filler", | ||
| description: "Rupies found are worth +{% more." | ||
| }), | ||
| new HoleJarBonusBase(14, <HoleJarBonusModel>{ | ||
| name: "SWAMPSTONE", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to find Opals in Tall Jars." | ||
| }), | ||
| new HoleJarBonusBase(15, <HoleJarBonusModel>{ | ||
| name: "FROST SPIRESTONE", | ||
| bonus: 12, | ||
| filler1: "Filler", | ||
| description: "Jar production rate is +{% faster." | ||
| }), | ||
| new HoleJarBonusBase(16, <HoleJarBonusModel>{ | ||
| name: "ROSEMERALD", | ||
| bonus: 10, | ||
| filler1: "Filler", | ||
| description: "}x Faster study rate for villager Bolaia" | ||
| }), | ||
| new HoleJarBonusBase(17, <HoleJarBonusModel>{ | ||
| name: "BLOOD GLASS", | ||
| bonus: 40, | ||
| filler1: "Filler", | ||
| description: "All rupies found are worth a whopping }x more!" | ||
| }), | ||
| new HoleJarBonusBase(18, <HoleJarBonusModel>{ | ||
| name: "SUNRISE DIAMOND", | ||
| bonus: 25, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to enchant a Collectible" | ||
| }), | ||
| new HoleJarBonusBase(19, <HoleJarBonusModel>{ | ||
| name: "MINCERAFT GEM", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "+{% Monument AFK Gain rate." | ||
| }), | ||
| new HoleJarBonusBase(20, <HoleJarBonusModel>{ | ||
| name: "CRIMSON SPADE", | ||
| bonus: 20, | ||
| filler1: "Filler", | ||
| description: "The harp produces }x more Notes!" | ||
| }), | ||
| new HoleJarBonusBase(21, <HoleJarBonusModel>{ | ||
| name: "STAINED GLASSDROP", | ||
| bonus: 35, | ||
| filler1: "Filler", | ||
| description: "Rupies found are worth +{% more." | ||
| }), | ||
| new HoleJarBonusBase(22, <HoleJarBonusModel>{ | ||
| name: "TABULA RASASTONE", | ||
| bonus: 32, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(23, <HoleJarBonusModel>{ | ||
| name: "DEEP BLUE SQUARE", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "+{% Gambit PTS" | ||
| }), | ||
| new HoleJarBonusBase(24, <HoleJarBonusModel>{ | ||
| name: "EARTHBOUND GEODE", | ||
| bonus: 15, | ||
| filler1: "Filler", | ||
| description: "Jar production rate is +{% faster." | ||
| }), | ||
| new HoleJarBonusBase(25, <HoleJarBonusModel>{ | ||
| name: "INFERNO DROPLET", | ||
| bonus: 40, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to find new Collectibles." | ||
| }), | ||
| new HoleJarBonusBase(26, <HoleJarBonusModel>{ | ||
| name: "OCTOGONAL GEM", | ||
| bonus: 30, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to enchant a Collectible" | ||
| }), | ||
| new HoleJarBonusBase(27, <HoleJarBonusModel>{ | ||
| name: "SOLARFANG", | ||
| bonus: 32, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to find Opals in Tall Jars." | ||
| }), | ||
| new HoleJarBonusBase(28, <HoleJarBonusModel>{ | ||
| name: "MYSTIC ORE", | ||
| bonus: 50, | ||
| filler1: "Filler", | ||
| description: "All rupies found are worth a whopping }x more!" | ||
| }), | ||
| new HoleJarBonusBase(29, <HoleJarBonusModel>{ | ||
| name: "ARCANE PRISM", | ||
| bonus: 38, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(30, <HoleJarBonusModel>{ | ||
| name: "MURKY FABREGE EGG", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "+{% Gambit PTS" | ||
| }), | ||
| new HoleJarBonusBase(31, <HoleJarBonusModel>{ | ||
| name: "CORPORE ROCK", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "Boosts a future cavern... futuuure..!" | ||
| }), | ||
| new HoleJarBonusBase(32, <HoleJarBonusModel>{ | ||
| name: "TWILIGHT PRISM", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "Boosts a future cavern... futuuure..!" | ||
| }), | ||
| new HoleJarBonusBase(33, <HoleJarBonusModel>{ | ||
| name: "TEWBALL ORBSTONE", | ||
| bonus: 40, | ||
| filler1: "Filler", | ||
| description: "Rupies found are worth +{% more." | ||
| }), | ||
| new HoleJarBonusBase(34, <HoleJarBonusModel>{ | ||
| name: "MAD MUSCLE ROCK", | ||
| bonus: 40, | ||
| filler1: "Filler", | ||
| description: "}x higher chance to enchant a Collectible" | ||
| }), | ||
| new HoleJarBonusBase(35, <HoleJarBonusModel>{ | ||
| name: "SUNROOT SPLINTERS", | ||
| bonus: 40, | ||
| filler1: "Filler", | ||
| description: "All villagers gain +{% more EXP." | ||
| }), | ||
| new HoleJarBonusBase(36, <HoleJarBonusModel>{ | ||
| name: "TWISTED RUPIE", | ||
| bonus: 75, | ||
| filler1: "Filler", | ||
| description: "}x faster Bell Ring Rate!" | ||
| }), | ||
| new HoleJarBonusBase(37, <HoleJarBonusModel>{ | ||
| name: "OVERLOADED RELIC", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "Boosts a future cavern... futuuure..!" | ||
| }), | ||
| new HoleJarBonusBase(38, <HoleJarBonusModel>{ | ||
| name: "SUNBURST PEARL", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "Boosts a future cavern... futuuure..!" | ||
| }), | ||
| new HoleJarBonusBase(39, <HoleJarBonusModel>{ | ||
| name: "BLOODFANG SPIRES", | ||
| bonus: 1, | ||
| filler1: "Filler", | ||
| description: "Boosts a future cavern... futuuure..!" | ||
| }) | ||
| ] | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.