diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f05eda..a4844ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. This format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) +## [1.2.6] - 2024-01-26 + +### Added +- Added sprites for Progressive Jump, Progressive Suit and a Generic CaveStory sprite. + +### Changed +- Changed how the Dread Wide Beam sprite looks + ## [1.2.5] - 2024-01-23 ### Fixed diff --git a/YAMS-LIB/Program.cs b/YAMS-LIB/Program.cs index ebe26cd..fb068a5 100644 --- a/YAMS-LIB/Program.cs +++ b/YAMS-LIB/Program.cs @@ -451,6 +451,9 @@ void CreateAndAddItemSprite(string name) Textures = GetTexturePageItemsForSpriteName("sItemDNA_") }); + CreateAndAddItemSprite("sItemProgressiveJump"); + CreateAndAddItemSprite("sItemProgressiveSuit"); + // New sprites for dna septogg gmData.Sprites.Add(new UndertaleSprite { @@ -544,6 +547,10 @@ void CreateAndAddItemSprite(string name) CreateAndAddItemSprite("sItemStormMissilesDread"); CreateAndAddItemSprite("sItemWideBeamDread"); #endregion + + #region Cave Story + CreateAndAddItemSprite("sItemGenericCS"); + #endregion #endregion void RotateTextureAndSaveToTexturePage(int rotation, UndertaleTexturePageItem texture) diff --git a/YAMS-LIB/sprites/Attribution.md b/YAMS-LIB/sprites/Attribution.md index f45bf11..296495e 100644 --- a/YAMS-LIB/sprites/Attribution.md +++ b/YAMS-LIB/sprites/Attribution.md @@ -8,9 +8,9 @@ Authors are as follows: - Everything in the `misc` folder, with the exception of the `hud` subfolder, was made by [AbyssalCreature](https://github.com/AbyssalCreature) - The `hud` subfolder in the `misc` folder was made by [Miepee](https://github.com/Miepee). - The DNA, Nothing, Power Bomb Launcher, Shiny Screw Attack, Shiny Hi-Jump, Shiny Ice beam, Shiny Missile, Super Missile - Launcher and Unknown - sprites (`items/dna`, `items/nothing`, `items/pbLauncher`, `items/screwAttackShiny`, `items/shinyHijump`, `items/shinyIcebeam`, `items/shinyMissile`, `items/superMissileLauncher` - and `items/unknown`) were made by [AbyssalCreature](https://github.com/AbyssalCreature) + Launcher. Progressive Jump, Progressive Suit and Unknown sprites + (`items/dna`, `items/nothing`, `items/pbLauncher`, `items/screwAttackShiny`, `items/shinyHijump`, `items/shinyIcebeam`, `items/shinyMissile`, `items/superMissileLauncher` + `items/progressiveJump`, `items/progressiveSuit` and `items/unknown`) were made by [AbyssalCreature](https://github.com/AbyssalCreature) - The Morph Ball and Missile Launcher sprites (`items/morph` and `items/missileLauncher` respectively) were made by ShirtyScarab554 - Power Grip and the Shiny nothing orb (`items/powerGrip` and `items/shinyNothing` respectively) were made by diff --git a/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_1.png b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_1.png new file mode 100644 index 0000000..616df8d Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_1.png differ diff --git a/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_2.png b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_2.png new file mode 100644 index 0000000..d8c8cd6 Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_2.png differ diff --git a/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_3.png b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_3.png new file mode 100644 index 0000000..616df8d Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_3.png differ diff --git a/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_4.png b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_4.png new file mode 100644 index 0000000..f950d57 Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveJump/sItemProgressiveJump_4.png differ diff --git a/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_1.png b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_1.png new file mode 100644 index 0000000..0a773f1 Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_1.png differ diff --git a/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_2.png b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_2.png new file mode 100644 index 0000000..96723cb Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_2.png differ diff --git a/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_3.png b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_3.png new file mode 100644 index 0000000..0a773f1 Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_3.png differ diff --git a/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_4.png b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_4.png new file mode 100644 index 0000000..75998e9 Binary files /dev/null and b/YAMS-LIB/sprites/items/progressiveSuit/sItemProgressiveSuit_4.png differ diff --git a/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS1.png b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS1.png new file mode 100644 index 0000000..d9f5110 Binary files /dev/null and b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS1.png differ diff --git a/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS2.png b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS2.png new file mode 100644 index 0000000..e21c7fd Binary files /dev/null and b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS2.png differ diff --git a/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS3.png b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS3.png new file mode 100644 index 0000000..d9f5110 Binary files /dev/null and b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS3.png differ diff --git a/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS4.png b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS4.png new file mode 100644 index 0000000..d2aca62 Binary files /dev/null and b/YAMS-LIB/sprites/offworld items/caveStory/generic/sItemGenericCS4.png differ diff --git a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_0.png b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_0.png index ffe6767..895c275 100644 Binary files a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_0.png and b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_0.png differ diff --git a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_1.png b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_1.png index dd59998..00a051a 100644 Binary files a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_1.png and b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_1.png differ diff --git a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_2.png b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_2.png index ffe6767..895c275 100644 Binary files a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_2.png and b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_2.png differ diff --git a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_3.png b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_3.png index 66f8c6e..08a7c37 100644 Binary files a/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_3.png and b/YAMS-LIB/sprites/offworld items/dread/wideBeam/sItemWideBeamDread_3.png differ