Skip to content

Commit

Permalink
Archive for Shells & Cherries
Browse files Browse the repository at this point in the history
  • Loading branch information
Producks committed Jan 28, 2024
0 parents commit 1541479
Show file tree
Hide file tree
Showing 378 changed files with 69,590 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Automatically add new line to end of all files on save.
[*]
insert_final_newline = true
trim_trailing_whitespace = true

# Four-space tabs in everything else
[*.*]
indent_style = tab
indent_size = 4

# Six spaces for indentation in .asm files
[*.asm]
indent_style = tab
indent_size = 4

[*.md]
indent_style = space
indent_size = 2
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*.nes
*.lst
.DS_Store
Thumbs.db
*.cdl
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: minimal
script:
- ./build.sh test
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Shells & Cherries
This is an archive from a 2022 ROM hack I made for ROM hack races. It's built on top of [xkeeper disassembly](https://github.com/Xkeeper0/smb2). This hack was a complete overhaul of the game, with the goal that it would last 5-20 minutes depending on the skill level. A lot of new features were added to the game to make the experience much smoother for a race setting, while respecting that the game would still runs on the original [NES](https://en.wikipedia.org/wiki/Nintendo_Entertainment_System) and fitting the whole ROM size at a whopping 512kb. However, all of the changes I made could probably still fit in a ROM size of 256kb. The patch can be found in the [release section](https://github.com/Producks/Shell-N-Cherries/releases/tag/merio).
## Features
* Complete overhaul of the level
* Complete overhaul of the visuals
* Beta music was added to replace the previous underground theme
* Pressing start now act has a fast respawn
* Dying now quickly respawns you, acting the same as pressing start
* Removed the iframe freeze that would happen when taking damage
* Reworked how cherries and shells work to make the gimmick work
* Able to swap graphics bank directly into the levels
* And much more that I forgot...
## Preview pictures
![](https://raw.githubusercontent.com/Producks/Shell-N-Cherries/main/pictures/smb2-2.png?token=GHSAT0AAAAAACET7MD3HPJQBRXG27VR4RQIZNWX5CQ)
![](https://raw.githubusercontent.com/Producks/Shell-N-Cherries/main/pictures/smb2-1.png?token=GHSAT0AAAAAACET7MD2UQNNQ2Z3HCKNIL3WZNWX5VQ)
![](https://raw.githubusercontent.com/Producks/Shell-N-Cherries/main/pictures/smb2-4.png?token=GHSAT0AAAAAACET7MD35A56YBEWVWQ2JGCYZNWYJ4Q)
5 changes: 5 additions & 0 deletions bin/assembler.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pass 1..
pass 2..
last try..
bin\smb2.nes written (262160 bytes).
smb2.lst written.
Loading

0 comments on commit 1541479

Please sign in to comment.