-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2d600b
commit bc329a7
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Terminology | ||
* Person: An actual person. A person can have multiple accounts. | ||
* Account: A single account in the game, identified by the tag e.g. #2QLGU8XY. An account may not be in the clan. | ||
* Member: An account that is in the clan. | ||
|
||
* Alias: Shorthand for specifying an account. An account can have multiple aliases, but an alias can only belong to one account. Aliases are case-insensitive. | ||
* Main: The main account of a Person. A person will have exactly 1 Main. | ||
* Alt: An alternative account of a Person. A person can have multiple alts. | ||
|
||
```mermaid | ||
classDiagram | ||
Person "1" --> "1" Main | ||
Person "1" --> "*" Alt | ||
Account "1" --> "*" Alias | ||
Account <|-- Main | ||
Account <|-- Alt | ||
class Account { | ||
is in clan: "Member" | ||
} | ||
``` |