Update weeks.md

This commit is contained in:
Puyo 2021-05-13 22:35:01 +02:00 committed by GitHub
parent 61e35069fc
commit 8546dcbfde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ Scroll down to Line 26, or Search (Windows/Linux: `Ctrl+F`, Mac: `Cmd+F`) for "w
--- ---
```haxe
var weekData:Array<Dynamic> = [ var weekData:Array<Dynamic> = [
['Tutorial'], ['Tutorial'],
@ -30,7 +31,10 @@ var weekData:Array<Dynamic> = [
['Senpai', 'Roses', 'Thorns'] ['Senpai', 'Roses', 'Thorns']
]; ];
```
---
Copy `['Senpai', 'Roses', 'Thorns']` into an empty line below it, and change the song names to the song names you want to use. Copy `['Senpai', 'Roses', 'Thorns']` into an empty line below it, and change the song names to the song names you want to use.
Don't forget to add a comma at the end of the previous Week, and you have your songlist for the week completed! Don't forget to add a comma at the end of the previous Week, and you have your songlist for the week completed!
@ -40,7 +44,27 @@ Example
--- ---
`['Ugh', 'Guns', 'Stress']` ```haxe
var weekData:Array<Dynamic> = [
['Tutorial'],
['Bopeebo', 'Fresh', 'Dadbattle'],
['Spookeez', 'South', "Monster"],
['Pico', 'Philly', "Blammed"],
['Satin-Panties', "High", "Milf"],
['Cocoa', 'Eggnog', 'Winter-Horrorland'],
['Senpai', 'Roses', 'Thorns'],
['Ugh', 'Guns', 'Stress']
];
```
--- ---
@ -53,6 +77,7 @@ Example
--- ---
```haxe
var weekCharacters:Array<Dynamic> = [ var weekCharacters:Array<Dynamic> = [
['', 'bf', 'gf'], ['', 'bf', 'gf'],
@ -72,6 +97,7 @@ var weekCharacters:Array<Dynamic> = [
['tankman', 'bf', 'gf'] ['tankman', 'bf', 'gf']
]; ];
```
--- ---
@ -83,7 +109,7 @@ Example
--- ---
--- ---
```haxe
var weekNames:Array<String> = [ var weekNames:Array<String> = [
"How to Funk", "How to Funk",
@ -103,6 +129,7 @@ var weekNames:Array<String> = [
"Tankman" "Tankman"
]; ];
```
--- ---