mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-06-17 20:23:21 +01:00
97cc8c86cf
## About The Pull Request This PR is meant to add toys, clothes, markings and more cosmetics requested by donators of Bubberstation. This was a task I assigned myself to take on for a long while. I decided to push this out in a PR to track progress. Artists: Crumpaloo, Casey/Keil, Wolf751, bitsynapse. <details> <summary>Full list of additions</summary> <br> -Blovy's plush, bottle, and suit. ✓ <br> -Farren's markings, hair, tail, wings, more. ✧ (semi-complete. but mostly good to go.) <br> -Astroturf's plush. ✓ <br> -exfil's wings. ✓ <br> -patriot210's clothing set ✓ <br> -detrender's in-hand item ✓ <br> -ironknight060's clothing set and item. ✓ <br> -Gavla's birthday plush ✓ <br> -Big deer hand sprites ✓ <br> -Andrew Mower's plush ✓ <br> -Ringing bell collars (needs more modularization) ✓ <br> <br> <br>ignore the commits from May 1, 2024. I am bad at github. </details> ## Why It's Good For The Game Supporters of the server should receive in-game things as thanks. ## Proof Of Testing Every commit is tested on my local beforehand before it is pushed. https://github.com/Bubberstation/Bubberstation/assets/96078776/833dbf4b-b63b-4205-8299-65ec7f170e81 https://github.com/Bubberstation/Bubberstation/assets/96078776/48ba3d2d-24ff-4535-b7d4-4b4f644627f2 https://github.com/Bubberstation/Bubberstation/assets/96078776/2b4ba30c-d7f4-4b6c-92d2-dcf5df7c78b2  ## Changelog 🆑 Shayoki, Crumpaloo, Keila, Wolf751, bitsynapse. add: Donator toys and clothes have arrived. --------- Co-authored-by: Otome <darkwolfinsanity@gmail.com> Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com> Co-authored-by: Bubberbot <151680451+Bubberbot@users.noreply.github.com> Co-authored-by: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Co-authored-by: Swiftfeather <jackwars4@gmail.com> Co-authored-by: Cursor <102828457+theselfish@users.noreply.github.com>
Datum Component System (DCS)
Concept
Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a SendSignal() call. Now every component that want's to can also know about this happening.