tModLoader
Turtle's L'il Dragon Race
Mostrando 41-50 de 415 aportaciones
< 1 ... 3  4  5  6  7 ... 42 >
Actualización: 29 JUL a las 4:40 a. m.

Version 4.11.2
** New **
None

** Changes **
None

** Fixes **
- Fixed fire breath damage over time improperly handling damage number displays when combined with other damage over time effects.
- Major edits to the race selection UI (mostly under the hood) to truly fix rendering between different between the race selection screen and the character selection screen, once and for all.
This fixes a bug with Absol looking incorrect on the race selection screen, for those who are using it.
This should also fix a bug with head previews during character creation getting offset after selecting a L'il Dragon codebase race, then back to a non-dragon codebase one.
This should ALSO fix an issue with clothes getting offset strangely during race select?

** Code/Internal **
None

Actualización: 26 JUL a las 6:56 p. m.

Version 4.11.1
** New **
None

** Changes **
- Races flagged as being able to use breath gems can now craft the dragon breath bench, rather than that bench being tied to being able to craft the vanity bench.

** Fixes **
- Fixed a major bug where the rescue system was not killing players, and players could not give up on rescue if the rescue system damage cap was set too high, or -1 (the default). Sorry!

** Code/Internal **
- Added data object field: AlwaysGiveFlightSpeedBoost. When true, this race always gets their flight speed boost while midair, even when not having any wings equipped.
- Added data object function: BreathUseKey. You can use this to manually define what key input (or other trigger) breath attacks should be triggered by, alongside the usual usability checks.
- Added data object function: ConditionalAffinity. Use this to conditionally disable affinity effects without physically removing affinity from the player.
- Fixed some projectiles not using Main.rand and instead creating a new instance of the random number generator object.
- A couple of comment fixes.

Actualización: 24 JUL a las 12:31 a. m.

Version 4.11.0 - While not adding any new content, this patch fixes a major underlying bug with how the dragons handled head/helmet rendering, which was causing some sprites like that of the Umbrella Hat to have some stretched pixels, plus a few other mod conflicts.
** New **
None

** Changes **
- Required updates for all affected races. Races will appear broken if not updated, so the required versions for all affected races has been updated!

** Fixes **
- Refactored the way helmets and heads draw for the dragons and other races, so they don't break helmets in unforseen ways.

** Code/Internal **
For developers using this codebase, eyelid sprites have shrunk from 64 pixels wide to 40 pixels (anchored left, so the white space on the right is removed).
Some races will need fixes to their head positions and item holding positions, too.
Check render layers like DragonHelmet and DragonSaddle to see special uses of dataObj.SpriteWidth to properly align everything like it was before.
`drawInfo.drawPlayer.bodyFrame.Width - dataObj.SpriteWidth` is your friend for getting the difference between the race's sprite width and the default, where dataObj is fetched using DragonUtil.GetData(player) and needs to be null checked before use.

Please let me know if anything explodes after this update. It probably will.

Actualización: 22 JUL a las 3:12 a. m.

Version 4.10.16
** New **
None

** Changes **
None

** Fixes **
- Fixed slightly offset particle spawning box when toggling the Focused Pendant of Stone (or similar items).

** Code/Internal **
None

Actualización: 21 JUL a las 6:03 p. m.

Version 4.10.15
** New **
None

** Changes **
None

** Fixes **
None

** Code/Internal **
- Adjusted logic for held items disappearing when petrified or while breathing fire, to better support the custom arm implementation.

Actualización: 20 JUL a las 8:16 a. m.

Version 4.10.14
** New **
None

** Changes **
None

** Fixes **
- Rescue Regen healing logic changed to hopefully play a bit nicer with external max health increases.

** Code/Internal **
None

Actualización: 20 JUL a las 2:42 a. m.

Version 4.10.13
** New **
None

** Changes **
- Expected Absol race version bumped to v0.6.13, if installed. Absol's swung item offsets look wrong otherwise!

** Fixes **
None

** Code/Internal **
- Fixed SwungItemOffsetStart, SwungItemOffsetMid, and SwungItemOffsetEnd being inverted in their logic. Oops!
- The above three values are also now exclusive- they don't progressively add to one another in sequence. It's easier to work with this way.
Sorry for the update spam. This is important.

Actualización: 20 JUL a las 12:29 a. m.

Version 4.10.12
** New **
None

** Changes **
None

** Fixes **
None

** Code/Internal **
- Forgot to add this last update: data object field CustomArmsDrawAfterImages for making custom arm layers also respect afterimages.

Actualización: 19 JUL a las 11:55 p. m.

Version 4.10.11
** New **
None

** Changes **
None

** Fixes **
None

** Code/Internal **
- Added data object flags: TailDrawsAfterImage and WingsDrawAfterImage. Can be toggled on to make the race's corresponding body parts render in afterimages.
- Added data object fields: PulleyRotationAddClose and PulleyRotationAddAway, as well as PulleyOffsetClose and PulleyOffsetAway. They let you change the visual rotation and position of the pulley that appears while holding a rope.
This involves a custom implementation of the pulley rendering for L'il Dragon codebase races, and as such may have some discrepancies if other mods attempt to change pulley rendering or if it updates in vanilla code.

Actualización: 19 JUL a las 8:55 a. m.

Version 4.10.10
** New **
None

** Changes **
None

** Fixes **
- Fix custom front arm layer rendering when the rest of the body isn't (eg. while petrified) by changing the layer to use BeforeParent(PlayerDrawLayers.ArmOverItem).

** Code/Internal **
- Moved some new item offset code in from PokeLib! See the new data object additions: ShouldChangeSwungItemOffset, CustomSwungItemOffset, SwungItemOffsetStart, SwungItemOffsetMid, SwungItemOffsetEnd.
- Minor comment updates.