User:Kaladin: Difference between revisions

2,756 edits
No edit summary
 
(17 intermediate revisions by the same user not shown)
Line 1: Line 1:
* Sandbox 1 [[User:DarthPhallus/Sandbox 1]]
* Sandbox 1 [[User:Kaladin/Sandbox 1]]
* Sandbox 2 [[User:Kaladin/Sandbox 2]]
* For Template Testing [[User:Kaladin/TestTemplate]]
* Glossary Overhaul + Linking it to Properties Template [[User:DarthPhallus/Glossary]]
* Glossary Overhaul + Linking it to Properties Template [[User:DarthPhallus/Glossary]]


Line 32: Line 34:


==MoveCard Notes==
==MoveCard Notes==
* Big issue stems from wikitext being passed through too many templates causing it to break
https://wiki.supercombo.gg/w/Module:Properties-UMVC3
** To get around this my current thought is resturcturing. Using https://river.me/blog/cargo-list-type-fields/ "Joining through a list-type table" this will allow me to join the properties field on the Glossary table to associate any property with the correct term and thus definitions.  
* May need to find some way to include parathesized info in the properties field while still having it pull the cargo correctly.
** In the template for actually constructing the move card ''AttackDataCargo-UMVC3'' I can instead directly construct the tooltip with the definition and term rather than needing to use the DefineTerm template to pull that info.
** <pre>{{#cargo_query:tables = UMVC3_FrameData=fd, UMVC3_FrameData__properties=pr | join on = fd._ID=pr._rowID | fields = _value | where = moveId='c.viper_236S' | format = ol}}</pre>
** The issue with the above is how to neatly get each term passed into the template? The easy solution is to pass it in then use a Lua function to break the terms apart at the "/" delimiter. But I don't really like this. Maybe instead I can make another Cargo Query ''inside'' the properties section of the ''AttackDataCargo-UMVC3'' template?
** In the Query I will simply change the template I'm passing the info into into the Module.
*** Pass in the term (value) and definition
*** Construct the Tooltip and everything in the parser. This might result in the same issue as before, should check.
**** To elaborate: The term will be everything with the paranthesis included. Would split off the paranthesis part and use that outside of a tooltip constructed of the pre-paranthesis part and the definition.
* May want to create a seperate MoveDataCargoImage template for UMVC3 to change the "caption" field to something like "Voiceline" but also include a way to say which image belongs to which version.
* Come up with a solid notation for the cancels?
** L/S/H/D/J/U = Launcher/Special/Hyper/Dash/Jump/Unique
** Ln/Sp/Hy/Ds/Jm/Uq = Launcher/Special/Hyper/Dash/Jump/Unique
** May want to include Superjump, THC, and maybe DHC?
 
==CSS Screen Notes==
* Need to see Eternal Yoshi about converting exported CSS Icons from LAB to RGB.
** If they look like shit I might just use the current icons
* I think I need to change from using border / outline to creating specific elements that are boxes to imitate it, that way they can set to blink indepentely on hover.
** This will also solve my dropshadow issue.

Latest revision as of 16:25, 16 May 2025

Useful Stuff


Grounded Normal Chain/Cancel Table

* L/S/H stands for Launcher, Specials, and Hypers

Normal Chains Into Cancels Into Notes
5L
2L
5M
2M
5H
2H


MoveCard Notes

https://wiki.supercombo.gg/w/Module:Properties-UMVC3

  • May need to find some way to include parathesized info in the properties field while still having it pull the cargo correctly.
    • {{#cargo_query:tables = UMVC3_FrameData=fd, UMVC3_FrameData__properties=pr | join on = fd._ID=pr._rowID | fields = _value | where = moveId='c.viper_236S' | format = ol}}
    • In the Query I will simply change the template I'm passing the info into into the Module.
      • Pass in the term (value) and definition
      • Construct the Tooltip and everything in the parser. This might result in the same issue as before, should check.
        • To elaborate: The term will be everything with the paranthesis included. Would split off the paranthesis part and use that outside of a tooltip constructed of the pre-paranthesis part and the definition.
  • May want to create a seperate MoveDataCargoImage template for UMVC3 to change the "caption" field to something like "Voiceline" but also include a way to say which image belongs to which version.
  • Come up with a solid notation for the cancels?
    • L/S/H/D/J/U = Launcher/Special/Hyper/Dash/Jump/Unique
    • Ln/Sp/Hy/Ds/Jm/Uq = Launcher/Special/Hyper/Dash/Jump/Unique
    • May want to include Superjump, THC, and maybe DHC?

CSS Screen Notes

  • Need to see Eternal Yoshi about converting exported CSS Icons from LAB to RGB.
    • If they look like shit I might just use the current icons
  • I think I need to change from using border / outline to creating specific elements that are boxes to imitate it, that way they can set to blink indepentely on hover.
    • This will also solve my dropshadow issue.