hlockey 4 → 5
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 +2 -2
- data/data/information.yaml +5 -5
- data/data/league.yaml +962 -794
- data/data/previous_election_results.yaml +40 -34
- data/lib/hlockey/constants.rb +6 -0
- data/lib/hlockey/data.rb +1 -1
- data/lib/hlockey/game/actions.rb +8 -11
- data/lib/hlockey/game/fight.rb +7 -3
- data/lib/hlockey/game/weather/audacity.rb +20 -0
- data/lib/hlockey/game/weather/chicken.rb +57 -0
- data/lib/hlockey/game/weather/incline.rb +43 -0
- data/lib/hlockey/game/weather/stars.rb +23 -0
- data/lib/hlockey/game/weather/sunset.rb +23 -0
- data/lib/hlockey/game/weather/waves.rb +27 -0
- data/lib/hlockey/game/weather/weatherable.rb +63 -0
- data/lib/hlockey/game/weather.rb +17 -0
- data/lib/hlockey/game.rb +73 -64
- data/lib/hlockey/league.rb +24 -29
- data/lib/hlockey/message.rb +8 -6
- data/lib/hlockey/team/player.rb +79 -0
- data/lib/hlockey/team/stadium.rb +49 -0
- data/lib/hlockey/team.rb +31 -5
- data/lib/hlockey/utils.rb +10 -2
- data/lib/hlockey/version.rb +1 -1
- metadata +13 -5
- data/lib/hlockey/player.rb +0 -73
- data/lib/hlockey/weather.rb +0 -168
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c3ffa20553204aab32e385a20810d695766243023a10d5d765874ef315b01cf2
|
4
|
+
data.tar.gz: c391278c8b2a521b6c245aff2982527072d7cc044a1dd86baee2f43ac7c5a0e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef0f92274582a0c109d12727468680085dcb6b5eab57a32fb460187aebce5ef6b333dc736c9f66b6e5812848efcf531e3e25ab1041f4bca0b7d655223db728d4
|
7
|
+
data.tar.gz: 302ebe65aebef3e201c4ab8174eb945c70d78e86a7bd50f5001519cbca5605822a5d9a5ba4ace11b54950310de4a16480856e524f21668e71a9002bafd6c31da
|
data/data/election.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
:Bribery:
|
3
|
-
:
|
4
|
-
:Lootboxes:
|
3
|
+
:Mods Help: Add player modifications.
|
4
|
+
:Lootboxes: Allow gambling for votes.
|
5
5
|
:We Do A Little Losing: Recognize the losingest teams with an Underbracket.
|
6
6
|
:Treasure:
|
7
7
|
:Dave: The worst stat on your team is set to 4.5.
|
data/data/information.yaml
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
First is the regular season, with matchups lasting 3 games.
|
4
4
|
Teams play 3 matchups against every team in their subleague (warm / cool).
|
5
5
|
After that, they play 1 matchup against the rest of the teams.
|
6
|
-
This adds up to 37 matchups, or
|
6
|
+
This adds up to 37 matchups, or 111 games.
|
7
7
|
After the regular season is the playoffs, with matchups lasting 5 games.
|
8
8
|
The playoffs are a single-elimination tournament.
|
9
9
|
The top teams in each division as well as the top 4 non-division leaders go to playoffs.
|
@@ -17,8 +17,8 @@
|
|
17
17
|
:Weather: |-
|
18
18
|
Hlockey has different weathers which effect the games, similar to Blaseball.
|
19
19
|
Audacity causes players to take shots regardless of the state of the game.
|
20
|
-
|
21
|
-
|
22
|
-
Inclines adds a random amount of score to a favored team's goals.
|
23
|
-
Sunset makes goals worth less the more teams score.
|
20
|
+
Chicken swaps a random roster player with a random shadow player for the rest of the game.
|
21
|
+
Incline adds a random amount of score to a favored team's goals.
|
24
22
|
Stars gives the losing team +0.5 score at the end of each period.
|
23
|
+
Sunset makes each team's goals worth less the more the team scores.
|
24
|
+
Waves swaps the worst roster player with a random shadow player permanently.
|