Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proposals 9122-9124 #169

Merged
merged 11 commits into from
Jul 6, 2024
196 changes: 196 additions & 0 deletions src/main/kotlin/org/agoranomic/assessor/decisions/9122-9124.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
package org.agoranomic.assessor.decisions

import org.agoranomic.assessor.dsl.assessment
import org.agoranomic.assessor.dsl.receivers.ai
import org.agoranomic.assessor.dsl.receivers.quorum
import org.agoranomic.assessor.dsl.receivers.url
import org.agoranomic.assessor.dsl.votes.complexityBonuses
import org.agoranomic.assessor.dsl.votes.onOrdinaryProposals
import org.agoranomic.assessor.dsl.votes.powerStone
import org.agoranomic.assessor.lib.vote.VoteKind.*

@UseAssessment
fun assessment9122to9124() = assessment {
name("9122-9124")
url("https://mailman.agoranomic.org/cgi-bin/mailman/private/agora-official/2024-June/017860.html")
quorum(5)

strengths {
default(3)
min(0)
max(15)

onOrdinaryProposals {
powerStone(snail, 3)

complexityBonuses {
maxBonus(3)

"Absurdor"(0) heldBy juan
"ADoP"(1) heldBy Murphy
"Arbitor"(2) heldBy nix
"Archivist"(1) heldBy Gaelan
"Assessor"(3) heldBy Janet
"Collector"(2) heldBy null
"Distributor"(0) heldBy omd
"Geologist"(1) heldBy Forest
"Herald"(2) heldBy snail
"Illuminator"(1) heldBy Quadrantal
"Notary"(2) heldBy snail
"Prime Minister"(0) heldBy Jimmy
"Promotor"(3) heldBy snail
"Referee"(2) heldBy ais523
"Registrar"(1) heldBy juan
"Rulekeepor"(3) heldBy Janet
"Speaker"(0) heldBy Jaff
"Spendor"(1) heldBy nix
"Stonemason"(1) heldBy Janet
"Tailor"(1) heldBy Murphy
"Webmastor"(1) heldBy null
}
}
}

proposals(v4) {
proposal(9122) {
title("Hats")
ai("1.0")
author(Mischief)
ordinary()

text(
"""
Create a rule titled "Hats" reading:

Hats are a secured player switch defaulting to "none" with the following
possible values and associated meanings for the player's current focus:

none: no particular focus

armored helm: competing for wins and in sub-games

dunce cap: expressing regret or acknowledging a mistake

floral wreath: resolving conflict

green eyeshade: maintaining accurate records

hard hat: repairing problems in the rules

jaunty beret: exploring creative expression

jester's cap: bringing levity and humor

judicial wig: ruling on CFJs and interpreting the rules

knitted cap: finding loopholes and exploits

plain hat: simplifying the rules

rugged fedora: researching Agoran and Nomic history

sleeping cap: reducing eir participation in Agora

steampunk hat: creating new game mechanics

traditional mortarboard: conducting research and writing theses

A player CAN change eir hat at any time by notifying the recordkeepor for
eir hat (publicly or privately). Unless otherwise specified by the rules:
1) the recordkeepor for a player's hat is the player emself, and 2)
reporting on hats is OPTIONAL.

Hats do not otherwise limit or restrict a player's actions in any way, and
every player is ENCOURAGED to participate in all aspects of the game
regardless of eir current hat."""
)
}

proposal(9123) {
title("Anniversaries")
ai("2.0")
author(Mischief)
ordinary()

text(
"""
Amend rule 1023 (Agoran Time) by appending:

5. Any anniversary, monthly anniversary, or quarterly anniversary
that would otherwise occur on a day of the month that does not
exist (after considering any leap day) instead occurs on the
following day."""
)
}

proposal(9124) {
title("Rock strat")
ai("1.0")
author(Murphy)
ordinary()

text(
"""
Amend Rule 2683 (The Boulder) by replacing this text:

Each player CAN, once a week, by announcement, push the boulder.
When a player pushes the Boulder, its Height is increased by 1.
At the beginning of each week, if the boulder was not pushed in
the previous week, the Boulder's Height is set to 0.

with this text:

Each player CAN, once a week, pay a fee of N + 1 spendies to push
the Boulder, where N is the number of times e has already done so
that month. When a player pushes the Boulder, its Height is
increased by 1. At the beginning of the week, if the Boulder was
not pushed in the previous week, the Boulder's Height is decreased
to half its value, rounded down."""
)
}
}

voting {
votes(snail) {
FOR on 9122
FOR on 9123
PRESENT on 9124
}

votes(Janet) {
AGAINST on 9122
FOR on 9123
PRESENT on 9124
}

votes(juan) {
FOR on 9122
PRESENT on 9123
AGAINST on 9124
}

votes(Forest) {
FOR on 9122
FOR on 9123
FOR on 9124
}

votes(Murphy) {
FOR on 9122
PRESENT on 9123
FOR on 9124
}

votes(wunst) {
FOR on 9122
PRESENT on 9123
AGAINST on 9124
}

votes(Mischief) {
FOR on 9122
FOR on 9123
AGAINST on 9124
}
}
}
Loading