Skip to content

Instantly share code, notes, and snippets.

View TrashboxBobylev's full-sized avatar

TrashboxBobylev TrashboxBobylev

  • Russia
View GitHub Profile
@TrashboxBobylev
TrashboxBobylev / iceberg
Created July 31, 2023 07:39
Cave Story iceberg changelog
1.1:
- Added "Beta debug cat (NPC 90)"
- Moved "Nicalis allegations" two layers up
- Moved "Spur and Turbocharge interaction" two layers up
- Removed "Pixel's other games"
- Added "Doukutsu Randamu"
- Added "Cave Story Randomizer"
- Added "Cave Story Modloader"
- Added "Layers"
- Added "Windows 11 transparency bug"
@TrashboxBobylev
TrashboxBobylev / RandoSource.java
Created April 8, 2023 14:21
The experimental rng engine I quickly wrote for unreleased Pixel Dungeon mod idea
public static class RandoSource extends java.util.Random {
public long seed;
public int count;
public RandoSource(){
this((long)Game.timeTotal);
}
public RandoSource(long seed){
this.seed = seed;
@TrashboxBobylev
TrashboxBobylev / doukutsu-randamu-guide.md
Last active March 3, 2023 18:21
Doukutsu Randamu modding resource

Updated for 1.40.

Doukutsu Randamu features many files that can be edited to alter the behavior of the game or its contents.

Basics

Most of file formats stay true to vanilla Cave Story, documentation for which can be found here. This section will discuss some additions Randamu uses for its data.

Images in general

@TrashboxBobylev
TrashboxBobylev / addRecipe
Last active May 9, 2019 14:44
TerraTweaker tasks documentation
{
"task": "addRecipe",
"content": {
"result": { //Here you describe recipe result
"id": "DirtBlock", //Text ID of item, look on terraria.gamepedia.com/Item_IDs for "internal names" of stuffs
"count": 45, //Quantity of recipe result,
"mod": null //Optional field, contains mod file name, from which you take item; if not present, TerraTweaker will take item from vanilla instead
},
"ingredients": [//Here you describe recipe ingredients, this is array
{