Skip to content
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

Add more dread and artifacts #164

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ This format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [1.2.3] - 2024-01-21

### Added
- New Dread sprites: diffusion beam, Flash Shift, Pulse Radar and Phantom Cloak.
- New Prime 1 sprites: Seperate sprites for all individual artifacts.

### Fixed
- ELM wil now work again.
- Getting progressive items in Multiworlds will now properly work for external item trackers.

## [1.2.2] - 2024-01-17

Expand Down
18 changes: 18 additions & 0 deletions YAMS-LIB/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,18 @@ void CreateAndAddItemSprite(string name)

#region Prime1
CreateAndAddItemSprite("sItemArtifactPrime");
CreateAndAddItemSprite("sItemArtifactElderPrime");
CreateAndAddItemSprite("sItemArtifactChozoPrime");
CreateAndAddItemSprite("sItemArtifactLifegiverPrime");
CreateAndAddItemSprite("sItemArtifactNaturePrime");
CreateAndAddItemSprite("sItemArtifactNewbornPrime");
CreateAndAddItemSprite("sItemArtifactSpiritPrime");
CreateAndAddItemSprite("sItemArtifactStrengthPrime");
CreateAndAddItemSprite("sItemArtifactSunPrime");
CreateAndAddItemSprite("sItemArtifactTruthPrime");
CreateAndAddItemSprite("sItemArtifactWarriorPrime");
CreateAndAddItemSprite("sItemArtifactWildPrime");
CreateAndAddItemSprite("sItemArtifactWorldPrime");
CreateAndAddItemSprite("sItemBombsPrime");
CreateAndAddItemSprite("sItemBoostBallPrime");
CreateAndAddItemSprite("sItemCombatVisorPrime");
Expand Down Expand Up @@ -517,14 +529,20 @@ void CreateAndAddItemSprite(string name)

#region Metroid Dread
CreateAndAddItemSprite("sItemCrossBombsDread");
CreateAndAddItemSprite("sItemDiffusionBeamDread");
CreateAndAddItemSprite("sItemEPartDread");
CreateAndAddItemSprite("sItemFlashShiftDread");
CreateAndAddItemSprite("sItemGrappleBeamDread");
CreateAndAddItemSprite("sItemIceMissilesDread");
CreateAndAddItemSprite("sItemMorphBallDread");
CreateAndAddItemSprite("sItemPhantomCloakDread");
CreateAndAddItemSprite("sItemPulseRadarDread");
CreateAndAddItemSprite("sItemSpaceJumpDread");
CreateAndAddItemSprite("sItemSpeedBoosterDread");
CreateAndAddItemSprite("sItemSpiderMagnetDread");
CreateAndAddItemSprite("sItemSpinBoostDread");
CreateAndAddItemSprite("sItemStormMissilesDread");
CreateAndAddItemSprite("sItemWideBeamDread");
#endregion
#endregion

Expand Down
10 changes: 8 additions & 2 deletions YAMS-LIB/sprites/Attribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,21 @@ Offworld items
- The RDV item sprite (`offworld items/default`) was made by [Miepee](https://github.com/Miepee). It's a modification of the Unknown sprite by [AbyssalCreature](https://github.com/AbyssalCreature) and the [Randovania logo](https://github.com/randovania/randovania/tree/main/tools/icons) by [Uncle Reggie](https://www.threads.net/@unclereggiegames)

Dread items:
- The Cross Bomb (`offworld items/dread/crossBombs`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature) and ShirtyScarab554
- The Cross Bomb (`offworld items/dread/crossBombs`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Diffusion Beam (`offworld items/dread/diffusionBeam`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature) and ShirtyScarab554
- The Energy Part (`offworld items/dread/energyPart`) sprites were made by [LaKompetenzia](https://www.twitch.tv/ilakompetenzia)
- The Flash Shift (`offworld items/dread/flashShift`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Grapple Beam (`offworld items/dread/grappleBeam`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Ice Missiles (`offworld items/dread/iceMissiles`) sprites were made by [Shale](https://cohost.org/RaffiTheOwl), modified from the Missile Launcher sprites by ShirtyScarab554
- The Morph Ball sprites (`offworld items/dread/morphBall`) were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Phantom Cloak (`offworld items/dread/phantomCloak`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Pulse Radar (`offworld items/dread/pulseRadar`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Space Jump(`offworld items/dread/spaceJump`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Speed Booster sprites (`offworld items/dread/speedBooster`) were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Spider Magnet sprites (`offworld items/dread/spiderMagnet`) were made by [AbyssalCreature](https://github.com/AbyssalCreature), modified from the Spin Boost sprites by ShirtyScarab554
- The Spin Boost sprites (`offworld items/dread/spinBoost`) were made by ShirtyScarab554
- The Storm Missile sprites (`offworld items/dread/stormMissiles`) were made by [Shale](https://cohost.org/RaffiTheOwl), modified from the Missile Launcher sprites by ShirtyScarab554
- The Wide Beam (`offworld items/dread/wideBeam`) sprites were made by [AbyssalCreature](https://github.com/AbyssalCreature)

Echoes items:
- The Amber translator sprites (`offworld items/primes/echoes/amber`) were made by [LaKompetenzia](https://www.twitch.tv/ilakompetenzia)
Expand Down Expand Up @@ -67,7 +73,7 @@ Echoes items:


Prime items:
- The Artifact sprites (`offworld items/primes/prime1/artifact`) were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Artifact sprites (`offworld items/primes/prime1/artifact` as well as the suffixes) were made by [AbyssalCreature](https://github.com/AbyssalCreature)
- The Bomb sprites (`offworld items/primes/prime1/bombs`) were made by [LaKompetenzia](https://www.twitch.tv/ilakompetenzia)
- The Boost Ball sprites (`offworld items/primes/prime1/boostBall`) were made by [LaKompetenzia](https://www.twitch.tv/ilakompetenzia)
- The Combat Visor sprites (`offworld items/primes/prime1/combatVisor`) were made by [Uncle Reggie](https://www.threads.net/@unclereggiegames)
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading