Eric Botti commited on
Commit
a1d14dd
·
1 Parent(s): 485a836

added readme

Browse files
Files changed (2) hide show
  1. GAME_RULES.MD +0 -30
  2. README.md +27 -0
GAME_RULES.MD DELETED
@@ -1,30 +0,0 @@
1
- # Chameleon: A social deduction game
2
-
3
- Chameleon is a social deduction game (Mafia, Among Us, etc.). The game consists of a group of animals (the "herd") who are all the same animal, and the chameleon, who is pretending to be part of the herd.
4
-
5
- Each round, all players say something about themselves, in the form of a "I am a/have/do/etc...." sentence in 10 words or less. All players then vote to try and identify who is the chameleon. For example:
6
-
7
- Animal: Owl
8
- Herd player 1: I have sharp claws.
9
- Herd player 2: I am a creature of the night.
10
- Herd player 3: I soar the skies looking for prey.
11
- Herd player 4: I have a keen eye.
12
- Chameleon: I am a predator.
13
-
14
- The herd wins if they can successfully determine who is the chameleon. The chameleon wins if they can successfully determine what animal the herd is.
15
-
16
- At the start of each game, all players are passed a card containing either the name of an animal, or "chameleon".
17
-
18
- There are several variations of the game.
19
-
20
- ## Chameleon-Judge
21
- In Chameleon-Judge, each game is played as a single round. All players give one description in random order, and then a "judge" player evaluates to determine who is the chameleon. If the judge correctly guesses who the chameleon is, all herd players get one point. If the judge fails to guess correctly, the chameleon gets one point for each member of the herd.
22
-
23
- ## Chameleon-Secret-Vote
24
- In Chameleon-Vote, each game is played as a single round. All players give one description in random order. All players then, without consulting each other, cast a secret ballot for who is the chameleon. If the majority of players choose the chameleon, the herd wins, and all herd players get one point. Otherwise, the chameleon wins, and the chameleon gets one point for each member of the herd.
25
-
26
- ## Chameleon-consultation-vote
27
- Same as Chameleon-Vote, but each player can give a statement as to who they think is the chameleon. Players then use this information to cast their vote.
28
-
29
- ## Chameleon-multi-round
30
- Each round follows chameleon-consultation-vote. Each player remaining after a round gets one point. Players know who each person voted for the previous round, and know what the previous statements were.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Chameleon
2
+
3
+ *A social deduction game powered by LLMs*
4
+
5
+ ## Game Rules
6
+
7
+ Chameleon is a social deduction game (a la Mafia, Among Us, etc.) about blending in, and finding out who doesn't belong.
8
+
9
+
10
+ At the start of the game, each player is assigned one of two roles:
11
+ - **The Herd**: The herd is a group of players who are all the same animal. They are trying to identify the chameleon hidden amongst them, while keeping the true animal a secret.
12
+ - **The Chameleon**: The chameleon is pretending to be part of the herd. Their goal is to identify what animal the herd is while remaining undetected.
13
+
14
+ Each round, all players say something about themselves, in the form of a "I am a/have/do/etc..." sentence in 10 words or less.
15
+
16
+ After all players have spoken, the Chameleon is given the choice to guess what animal the herd is. If they guess correctly, they win. If they guess incorrectly, the herd wins.
17
+
18
+ If the Chameleon chooses not to guess the herd then votes on what player they think the Chameleon is.
19
+ If the majority of the herd votes for the Chameleon, the herd wins. If the majority of the herd votes for a member of the herd, the Chameleon wins.
20
+
21
+ Example Round:
22
+ *The secret animal is an owl Owl*
23
+ Herd player 1: I have sharp claws.
24
+ Herd player 2: I am a creature of the night.
25
+ Herd player 3: I soar the skies looking for prey.
26
+ Herd player 4: I have a keen eye.
27
+ Chameleon: I am a predator.