|
|
Line 1: |
Line 1: |
| To make editing the notation easier, a script has been made. It can be accessed here:
| | == TvCInput Template Documentation == |
|
| |
|
| [https://github.com/cce2955/TvCSuperComboConverter/blob/main/tvcwikiconvert.ps1 TvC Notation Script]
| | This documentation explains how to use the `TvCInput` template for representing inputs consistently across the wiki. |
|
| |
|
| In the interest of not requiring users to download multiple packages or dependencies, and to avoid the complexities of various programming languages, PowerShell was chosen for this script. It is available on most systems by default. If demand is high enough, a Python version may be considered in the future.
| |
|
| |
| For security, the code is available directly on the page. The script operates entirely offline and does not request any information beyond user defined numpad inputs.
| |
|
| |
| To use the script:
| |
|
| |
| 1. Download it as `{program_name}.ps1`, or copy paste into a notepad and save it somewhere as {Programname}.ps1
| |
|
| |
| 2. Launch it by either double-clicking the file or running it via the command line.
| |
|
| |
| 3. On-screen prompts will guide you to input your commands.
| |
|
| |
| 4. Outputs are immediately generated as both icons and numpad inputs.
| |
|
| |
| 5. The grid below shows the various commands used to generate outputs, it's intended to be intuitive but some of the commands had to be shuffled to help keep things from overlapping
| |
| boot dolphin, go to tools, click launch wii menu
| |
| {| class="wikitable" style="width: 100%;" | | {| class="wikitable" style="width: 100%;" |
| |+ TvC Numpad Notation Converter - Special Commands (all commands are case insensitive)
| | ! Input Type |
| ! Command | | ! Example Inputs |
| ! Explanation | | ! Description |
| ! Example | | ! Usage |
| | ! Output Example |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''X'''/'''XX''' | | | Basic Inputs |
| | A strength insensitive button, for when any strength of the attack is applicable. XX is used to denote supers normally | | | A, a, L, l, B, b, M, m, C, c, H, h |
| | | | Basic attacks and heavy moves. |
| | Input:
| | | <nowiki>{{TvCInput|A}}</nowiki> |
| 236XX 2X
| | | {{TvCInput|A}} |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=purple|[[File:TVC-236.png|30px]] [[File:TVC-AT.png|30px]] [[File:TVC-AT.png|30px]]}}  {{TvCUnderline|color=purple|[[File:TVC-2.png|30px]] [[File:TVC-AT.png|30px]]}}
| |
| | |
| {{TvC-Colors|purple|236XX}}  {{TvC-Colors|purple|2X}}
| |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''A, B, C'''
| |
| | The three strength attacks, with A light, B medium, C heavy, can be combined with motion inputs
| |
| | Input: | |
| | |
| A B C 421XX 214A
| |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=yellow|[[File:TVC-L.png|30px]]}}  {{TvCUnderline|color=green|[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=purple|[[File:TVC-421.png|30px]] [[File:TVC-AT.png|30px]] [[File:TVC-AT.png|30px]]}}  {{TvCUnderline|color=yellow|[[File:TVC-214.png|30px]] [[File:TVC-L.png|30px]]}}
| |
| | |
| {{TvC-Colors|yellow|A}}  {{TvC-Colors|green|B}}  {{TvC-Colors|blue|C}}  {{TvC-Colors|purple|421XX}}  {{TvC-Colors|yellow|214A}}
| |
| | |
| | |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''{direction}''' | | | Directional Inputs |
| | Supports singular directional motions: | | | 2, 3, 4, 6, 8 |
| * Currently supports 2, 4, 6, 8, 3. With a moderate amount of effort I can do the rest but...eh
| | | Represent directional inputs. |
| | Input: | | | <nowiki>{{TvCInput|6}}</nowiki> |
| 2 4 6 8 3
| | | {{TvCInput|6}} |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=white|[[File:TVC-2.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-4.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-6.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-8.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-3.png|30px]]}}
| |
| | |
| {{TvC-Colors|white|2}}  {{TvC-Colors|white|4}}  {{TvC-Colors|white|6}}  {{TvC-Colors|white|8}}  {{TvC-Colors|white|3}}
| |
| | |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''{direction}{direction}''' | | | Jump Inputs |
| | Supports repeated directional motions: | | | j.A, j.a, j.L, j.l, j.B, j.b, j.M, j.m, j.C, j.c, j.H, j.h |
| * 22: Repeated down input
| | | Attacks while jumping. |
| * 66: Double forward (dash forward)
| | | <nowiki>{{TvCInput|j.B}}</nowiki> |
| * 44: Double backward (dash backward)
| | | {{TvCInput|j.B}} |
| | Input:
| |
| 22 66 44
| |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=white|[[File:TVC-2.png|30px]] [[File:TVC-2.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-6.png|30px]] [[File:TVC-6.png|30px]]}}  {{TvCUnderline|color=white|[[File:TVC-4.png|30px]] [[File:TVC-4.png|30px]]}}
| |
| | |
| {{TvC-Colors|white|22}}  {{TvC-Colors|white|66}}  {{TvC-Colors|white|44}}
| |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''XchargeY''' | | | Special Inputs |
| | Charge motion starting in one direction (X) and transitioning to another (Y). | | | 236A, 236a, 214B, 214b, 421C, 421c, 623A, 623a |
| Often paired with a button to execute charge-based moves, e.g., 4charge6A.
| | | Special move commands with directional inputs. |
| | Input: | | | <nowiki>{{TvCInput|236C}}</nowiki> |
| | | | {{TvCInput|236C}} |
| 4charge6A
| |
|
| |
| Output:
| |
| | |
| {{TvCUnderline|color=yellow|[[File:TVC-4.png|30px]] [[File:TVC-charge.png|50px]] [[File:TVC-6.png|30px]] [[File:TVC-L.png|30px]]}} | |
| | |
| {{TvC-Colors|yellow|[4]6A}} | |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''BBQ''' | | | Advanced Inputs |
| | Baroque mechanic icon with gradient styling.
| | | 63214A, 63214B, 360XX, 28chargeA, 46chargeB |
| Consumes red health to extend combos or reset actions.
| | | Advanced special moves, including charges and circular inputs. |
| | Input:
| | | <nowiki>{{TvCInput|360XX}}</nowiki> |
| | | | {{TvCInput|360XX}} |
| A B C BBQ 623A
| |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=yellow|[[File:TVC-L.png|30px]]}}  {{TvCUnderline|color=green|[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet)|[[File:TVC-baroque.png|80px]]}}  {{TvCUnderline|color=yellow|[[File:TVC-623.png|30px]] [[File:TVC-L.png|30px]]}}
| |
| | |
| {{TvC-Colors|yellow|A}}  {{TvC-Colors|green|B}}  {{TvC-Colors|blue|C}}  {{TvC-Colors|bbq|BBQ}}  {{TvC-Colors|yellow|623A}}
| |
| |- | | |- |
| | style="background-color: #D3D3D3; color: #000;" | '''TK''' | | | System Inputs |
| | Tiger Knee motion, an input immediately after jumping. | | | AT, BBQ, tk, sjc |
| Commonly written as 2369X for quick aerial specials.
| | | System mechanics such as assists, Baroque cancels, or super jumps. |
| | Input:
| | | <nowiki>{{TvCInput|BBQ}}</nowiki> |
| | | | {{TvCInput|BBQ}} |
| j.B TK 214A
| | |} |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=gray|[[File:TVC-TK.png|30px]]}}  {{TvCUnderline|color=yellow|[[File:TVC-214.png|30px]] [[File:TVC-L.png|30px]]}}
| |
| | |
| {{TvC-Colors|green|j.B}}  {{TvC-Colors|gray|TK}}  {{TvC-Colors|yellow|214A}}
| |
| | |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''SJC'''
| |
| | Super Jump Cancel.
| |
| Allows chaining grounded moves into an aerial follow-up using a super jump.
| |
| | Input: | |
| | |
| SJC 214C
| |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=cyan|[[File:TVC-SJC.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-214.png|30px]] [[File:TVC-H.png|30px]]}} | |
| | |
| {{TvC-Colors|cyan|SJC}}  {{TvC-Colors|blue|214C}}
| |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''~JC'''
| |
| | Jump Cancel.
| |
| Cancels a grounded move into a jump for further extensions or resets.
| |
| | Input: | |
| | |
| j.B j.B ~jc j.B j.B
| |
| | |
| Output:
| |
| | |
| {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=skyblue|jump cancel}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}
| |
| | |
| {{TvC-Colors|green|j.B}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|skyblue|jc}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|green|j.B}}
| |
| | |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''X.Y'''
| |
| | A chained command where sequential inputs are connected by periods ("."). Otherwise known as a rekka
| |
| | Input:
| |
| | |
| 236X.X.214X
| |
| | |
| Output:
| |
|
| |
|
| {{TvCUnderline|color=purple|[[File:TVC-623.png|30px]] [[File:TVC-AT.png|30px]]}} -> {{TvCUnderline|color=purple|[[File:TVC-AT.png|30px]]}} -> {{TvCUnderline|color=purple|[[File:TVC-214.png|30px]] [[File:TVC-AT.png|30px]]}}
| |
|
| |
| {{TvC-Colors|purple|623X}} -> {{TvC-Colors|purple|X}} -> {{TvC-Colors|purple|214X}}
| |
|
| |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''hold{button}'''/'''release{button}'''
| |
| | Hold. Instructs the user to hold a button down
| |
|
| |
| Release. Release said button
| |
|
| |
| | Input:
| |
|
| |
| A B C holdC 3C sjc j.B j.b ~jc j.B j.B releaseC
| |
|
| |
| Output:
| |
|
| |
| {{TvCUnderline|color=yellow|[[File:TVC-L.png|30px]]}}  {{TvCUnderline|color=green|[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-3.png|30px]] [[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=orange|[[File:TvC-hold.png|75px]] [[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=cyan|[[File:TVC-SJC.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=skyblue|jump cancel}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=purple|[[File:TVC-Release.png|50px]] [[File:TVC-H.png|30px]]}}
| |
|
| |
| {{TvC-Colors|yellow|A}}  {{TvC-Colors|green|B}}  {{TvC-Colors|blue|C}}  {{TvC-Colors|blue|3C}}  {{TvC-Colors|blue|Hold(C)}}  {{TvC-Colors|cyan|SJC}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|skyblue|jc}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|blue|release(C)}}
| |
|
| |
| |-
| |
| | style="background-color: #D3D3D3; color: #000;" | '''*{button}'''
| |
| | Mash, press a button rapidly
| |
| | Input:
| |
|
| |
| A B C 3C *C 66 B C *C 66 3C sjc j.B j.C.C
| |
|
| |
| Output:
| |
|
| |
| {{TvCUnderline|color=yellow|[[File:TVC-L.png|30px]]}}  {{TvCUnderline|color=green|[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-3.png|30px]] [[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=magenta|[[File:TVC-Mash.png|30px]]}}([[File:TVC-H.png|30px]])  {{TvCUnderline|color=white|[[File:TVC-6.png|30px]] [[File:TVC-6.png|30px]]}}  {{TvCUnderline|color=green|[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=magenta|[[File:TVC-Mash.png|30px]]}}([[File:TVC-H.png|30px]])  {{TvCUnderline|color=white|[[File:TVC-6.png|30px]] [[File:TVC-6.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-3.png|30px]] [[File:TVC-H.png|30px]]}}  {{TvCUnderline|color=cyan|[[File:TVC-SJC.png|30px]]}}  {{TvCUnderline|color=green|j.[[File:TVC-M.png|30px]]}}  {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}} -> {{TvCUnderline|color=blue|[[File:TVC-H.png|30px]]}}
| |
|
| |
| {{TvC-Colors|yellow|A}}  {{TvC-Colors|green|B}}  {{TvC-Colors|blue|C}}  {{TvC-Colors|blue|3C}}  {{TvC-Colors|purple|*C}}  {{TvC-Colors|white|66}}  {{TvC-Colors|green|B}}  {{TvC-Colors|blue|C}}  {{TvC-Colors|purple|*C}}  {{TvC-Colors|white|66}}  {{TvC-Colors|blue|3C}}  {{TvC-Colors|cyan|SJC}}  {{TvC-Colors|green|j.B}}  {{TvC-Colors|blue|C}} -> {{TvC-Colors|blue|C}}
| |
| |}
| |
| == Media Management == | | == Media Management == |
|
| |
|