Techpack

Sandstar Support Guide

Feb 5th, 2021 (edited)
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. Sandstar Support Guide
  2. ======================
  3. This is a guide for adding Sandstar form support for your Rivals Workshop character.
  4. The stage appears to be unable to control character's animations, so setup is slightly finicky.
  5.  
  6. =====================================================================================
  7.  
  8. Step 1: Draw a hurt sprite of your character in a humanoid form. You can use this sprite as an example base:
  9. https://imgur.com/a/mvpoS5k
  10.  
  11. Place sprite into character sprites and name it sandstar_hurt_strip1 (Although the name can honestly be anything)
  12.  
  13. ============================
  14. Step 2: Setting code
  15. In Init.gml, paste in sandstarred = false
  16. The stage gives all players this variable on startup, but due to how the animation setup is, it's necessary for supported characters.
  17.  
  18. In Load.gml, set the sprite's origins. This is usually the same as the normal hurt sprite.
  19. Eg: sprite_change_offset("sandstar_hurt", 64, 64);
  20.  
  21. In Update.gml, paste this:
  22. if state_cat != SC_HITSTUN
  23. sandstarred = false;
  24.  
  25. This is to set the sandstar form to normal after getting out of hitstun.
  26.  
  27. In animation.gml, paste:
  28. if (state_cat == SC_HITSTUN) and sandstarred = true {
  29. sprite_index = sprite_get( "sandstar_hurt" );
  30. }
  31. To set the change after being hit.
  32.  
  33. ====================================
  34.  
  35. Sandstar form guide:
  36. Sandstar is a substance has different effects depending on what it touches.
  37. If Sandstar touches something that is living or was previously living, it turns that thing into a friend. A humanoid creature with characteristics of the thing it’s based off.
  38. For a list of friends follow this link:
  39. https://japari-library.com/wiki/List_of_Friends
  40.  
  41.  
  42. It’s recommended that you find a friend that is based off the creature your character is and use that as a design base. If your character’s species is not on the list, feel free to make up your own design.
  43.  
  44. If Sandstar falls on a non-living object, it becomes a Cellian (although this is completely subjective. There has been many exceptions).
  45. Cellian designs are here:
  46. https://japari-library.com/wiki/Cellien
  47.  
  48. Remember, designs are completely up to you, just have a laugh designing for such a wacky mechanic.
Advertisement
Add Comment
Please, Sign In to add comment