hlockey 2 → 4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/data/election.yaml +21 -0
- data/data/external/names.txt +19948 -0
- data/data/information.yaml +24 -0
- data/data/league.yaml +1526 -0
- data/data/links.yaml +3 -0
- data/data/previous_election_results.yaml +59 -0
- data/lib/hlockey/constants.rb +4 -0
- data/lib/hlockey/data.rb +17 -13
- data/lib/hlockey/game/actions.rb +27 -0
- data/lib/hlockey/game/fight.rb +99 -0
- data/lib/hlockey/game.rb +321 -159
- data/lib/hlockey/league.rb +254 -115
- data/lib/hlockey/message.rb +182 -0
- data/lib/hlockey/player.rb +73 -0
- data/lib/hlockey/team.rb +52 -35
- data/lib/hlockey/utils.rb +15 -0
- data/lib/hlockey/version.rb +3 -5
- data/lib/hlockey/weather.rb +168 -0
- data/lib/hlockey.rb +1 -3
- metadata +36 -16
- data/bin/hlockey +0 -104
- data/lib/hlockey/data/election.yaml +0 -16
- data/lib/hlockey/data/information.yaml +0 -12
- data/lib/hlockey/data/league.yaml +0 -846
- data/lib/hlockey/data/links.yaml +0 -2
- data/lib/hlockey/messages.rb +0 -100
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
:Format: |-
|
3
|
+
First is the regular season, with matchups lasting 3 games.
|
4
|
+
Teams play 3 matchups against every team in their subleague (warm / cool).
|
5
|
+
After that, they play 1 matchup against the rest of the teams.
|
6
|
+
This adds up to 37 matchups, or 114 games.
|
7
|
+
After the regular season is the playoffs, with matchups lasting 5 games.
|
8
|
+
The playoffs are a single-elimination tournament.
|
9
|
+
The top teams in each division as well as the top 4 non-division leaders go to playoffs.
|
10
|
+
Playoffs are perfectly seeded (best team plays worst team, etc).
|
11
|
+
Playoffs have 3 matchups, or 15 games.
|
12
|
+
:Elections: |-
|
13
|
+
During each season, everyone can vote on the website for things that change the league.
|
14
|
+
Briberies effect the entire league.
|
15
|
+
Treasures are won on a raffle between the teams.
|
16
|
+
Coachings are given to each team, with teams getting the coaching they vote for the most.
|
17
|
+
:Weather: |-
|
18
|
+
Hlockey has different weathers which effect the games, similar to Blaseball.
|
19
|
+
Audacity causes players to take shots regardless of the state of the game.
|
20
|
+
Waves replaces a player on a team's roster with a random player from their shadows.
|
21
|
+
Chicken is the same as Waves, but only for the rest of the game instead of permanently.
|
22
|
+
Inclines adds a random amount of score to a favored team's goals.
|
23
|
+
Sunset makes goals worth less the more teams score.
|
24
|
+
Stars gives the losing team +0.5 score at the end of each period.
|