(corrected an input) |
No edit summary |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== TvCInput Template Documentation == | |||
This documentation explains how to use the `TvCInput` template for representing inputs consistently across the wiki. all inputs are case insensitive, don't worry about breaking your shift key. | |||
Also writing <nowiki>{{TvCInput|{input}}}</nowiki> for each entry is kinda grating so here is a [https://github.com/cce2955/TvCSuperComboConverter/blob/main/tvcwikiconvert.ps1 powershell script] that will take your inputs and just output them to the correct format, if you don't want to download strange code from github here it is right here in the spoiler, unliked the old one it literally takes your inputs and outputs it with <nowiki>{{TvCInput|{your input}}}</nowiki> so it's not as robust and has no checkers, you are on your own for proper notation: | |||
<div class="mw-collapsible mw-collapsed" style="float: none; text-align: left; margin: 0;"> | |||
<div class="mw-collapsible-toggle">Spoiler: Click to reveal</div> | |||
<pre class="mw-collapsible-content" style="text-align: left; margin: 0;"> | |||
# Function to wrap input in TvCInput format | |||
function Get-TvCFormattedInput { | |||
param ( | |||
[string]$inputString | |||
) | |||
# Return the wrapped format | |||
return "{{TvCInput|$inputString}}" | |||
} | |||
# Prompt user for input | |||
Write-Host "Enter the TvCInput string (multiple inputs separated by spaces):" | |||
$userInput = Read-Host | |||
# Split the input into multiple strings and process each one | |||
$outputs = @() | |||
foreach ($input in $userInput -split '\s+') { | |||
$outputs += Get-TvCFormattedInput -inputString $input | |||
} | |||
# Combine the results into a single output string | |||
$outputString = $outputs -join " " | |||
# Output the result | |||
Write-Host $outputString | |||
</pre> | |||
</div> | |||
{| class="wikitable" style="width: 100%;" | {| class="wikitable" style="width: 100%;" | ||
! Input Type !! Input(s) !! Example Input !! Example Output | |||
! | |- | ||
! | | Basic Input || A, B, C, L, M, H, X || <nowiki>{{TvCInput|A}}</nowiki> || {{TvCInput|A}} | ||
! Example | |- | ||
| Directional Input || 2, 3, 4, 6, 8, 9 || <nowiki>{{TvCInput|6}}</nowiki> || {{TvCInput|6}} | |||
|- | |||
| Special Move Input || 236A, 214B, 623C, 421X || <nowiki>{{TvCInput|236b}}</nowiki> || {{TvCInput|236b}} | |||
|- | |||
| Supers Input || 236XX, 623XX, 214XX, 421XX || <nowiki>{{TvCInput|236XX}}</nowiki> || {{TvCInput|236XX}} | |||
|- | |- | ||
| | | Jump Input || jA, jB, jC, j.A, j.B, j.C, j.X j.2C || <nowiki>{{TvCInput|j.c}}</nowiki> || {{TvCInput|j.c}} | ||
| A | |||
|- | |- | ||
| | | Diagonal Input || 3C || <nowiki>{{TvCInput|3a}}</nowiki> || {{TvCInput|3a}} | ||
|- | |- | ||
| | | Charge Input || 28A, 28B, 28C, 28chargeA, 28chargeB, 28chargeC, 46A, 46B, 46C, 46chargeA, 46chargeB, 46chargeC, 28X, 46X || <nowiki>{{TvCInput|28x}}</nowiki> || {{TvCInput|28x}} | ||
| | |||
|- | |- | ||
| | | Hold Input || holdA, holdB, holdC, holdX || <nowiki>{{TvCInput|holdA}}</nowiki> || {{TvCInput|holdA}} | ||
|- | |- | ||
| | | Release Input || releaseA, releaseB, releaseC, releaseX || <nowiki>{{TvCInput|releaseb}}</nowiki> || {{TvCInput|releaseb}} | ||
| | |||
| | |||
{{ | |||
{{ | |||
|- | |- | ||
| | | System Input || BBQ, baroque, bbq, IAD, tk, plus || <nowiki>{{TvCInput|BBQ}}</nowiki> || {{TvCInput|BBQ}} | ||
| | |||
| | |||
|- | |- | ||
| | | Partner Input || P, assist || <nowiki>{{TvCInput|P}}</nowiki> || {{TvCInput|P}} | ||
| | |||
|- | |- | ||
| Super Jump Input || sjc || <nowiki>{{TvCInput|sjc}}</nowiki> || {{TvCInput|sjc}} | |||
| Super Jump | |||
| | |||
|- | |- | ||
| | | Dash Input || 66, 44 || <nowiki>{{TvCInput|66}}</nowiki> || {{TvCInput|66}} | ||
{{ | |||
|- | |- | ||
| | | IAD|| IAD || <nowiki>{{TvCInput|iad}}</nowiki> || {{TvCInput|iad}} | ||
| | |||
| | |||
|- | |- | ||
| | | Special Move Variations || 214A, 214B, 214C, 214X, 214XX, 421A, 421B, 421C, 421X, 421XX, 63214A, 63214B, 63214C, 63214X || <nowiki>{{TvCInput|214A}}</nowiki> || {{TvCInput|214A}} | ||
| | |||
| | |||
|- | |- | ||
| | | 360 || 360XX, 360C || <nowiki>{{TvCInput|360XX}}</nowiki> || {{TvCInput|360XX}} | ||
| | |} | ||
| | |||
== Media Management == | == Media Management == | ||
Line 195: | Line 84: | ||
|- | |- | ||
| Adding categories to media uploads. | | Adding categories to media uploads. | ||
| | | | ||
[[Category:Tatsunoko vs Capcom: Ultimate All Stars]] | [[Category:Tatsunoko vs Capcom: Ultimate All Stars]] | ||
=== WebM Creation Tools Overview === | === WebM Creation Tools Overview === |
Latest revision as of 20:49, 28 December 2024
TvCInput Template Documentation
This documentation explains how to use the `TvCInput` template for representing inputs consistently across the wiki. all inputs are case insensitive, don't worry about breaking your shift key.
Also writing {{TvCInput|{input}}} for each entry is kinda grating so here is a powershell script that will take your inputs and just output them to the correct format, if you don't want to download strange code from github here it is right here in the spoiler, unliked the old one it literally takes your inputs and outputs it with {{TvCInput|{your input}}} so it's not as robust and has no checkers, you are on your own for proper notation:
Spoiler: Click to reveal
# Function to wrap input in TvCInput format function Get-TvCFormattedInput { param ( [string]$inputString ) # Return the wrapped format return "{{TvCInput|$inputString}}" } # Prompt user for input Write-Host "Enter the TvCInput string (multiple inputs separated by spaces):" $userInput = Read-Host # Split the input into multiple strings and process each one $outputs = @() foreach ($input in $userInput -split '\s+') { $outputs += Get-TvCFormattedInput -inputString $input } # Combine the results into a single output string $outputString = $outputs -join " " # Output the result Write-Host $outputString
Input Type | Input(s) | Example Input | Example Output |
---|---|---|---|
Basic Input | A, B, C, L, M, H, X | {{TvCInput|A}} | |
Directional Input | 2, 3, 4, 6, 8, 9 | {{TvCInput|6}} | |
Special Move Input | 236A, 214B, 623C, 421X | {{TvCInput|236b}} | |
Supers Input | 236XX, 623XX, 214XX, 421XX | {{TvCInput|236XX}} | |
Jump Input | jA, jB, jC, j.A, j.B, j.C, j.X j.2C | {{TvCInput|j.c}} | |
Diagonal Input | 3C | {{TvCInput|3a}} | |
Charge Input | 28A, 28B, 28C, 28chargeA, 28chargeB, 28chargeC, 46A, 46B, 46C, 46chargeA, 46chargeB, 46chargeC, 28X, 46X | {{TvCInput|28x}} | |
Hold Input | holdA, holdB, holdC, holdX | {{TvCInput|holdA}} | |
Release Input | releaseA, releaseB, releaseC, releaseX | {{TvCInput|releaseb}} | |
System Input | BBQ, baroque, bbq, IAD, tk, plus | {{TvCInput|BBQ}} | |
Partner Input | P, assist | {{TvCInput|P}} | |
Super Jump Input | sjc | {{TvCInput|sjc}} | |
Dash Input | 66, 44 | {{TvCInput|66}} | |
IAD | IAD | {{TvCInput|iad}} | |
Special Move Variations | 214A, 214B, 214C, 214X, 214XX, 421A, 421B, 421C, 421X, 421XX, 63214A, 63214B, 63214C, 63214X | {{TvCInput|214A}} | |
360 | 360XX, 360C | {{TvCInput|360XX}} |
Media Management
Upload Guidelines
Task | Instructions | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Adding categories to media uploads. |
WebM Creation Tools Overview
|
Templates and Their Uses
Purpose | Acts as a directory for all public-facing pages in the TvC wiki. |
---|---|
Usage |
1. Link to it from within the "General" section. 2. Use the code snippet provided to link it. |
Code Snippet |
<div style="background-image: linear-gradient(to bottom, #FF69B4, transparent 50%);
flex: 0 1 70px; text-align: center; min-width: 70px; height: 100px;">
{{Navbox/Icon| image={your icon here} | text=[THIS LINKS TO YOUR NEW PAGE, do not put the URL, just the page name]}}
</div>
|
Additional Notes |
|
TvC Colors
Purpose | Notes |
---|---|
Predefined color schemes for numpad notation. |
|