2021-01-16 15:09:58 -05:00
|
|
|
package d2enum
|
|
|
|
|
2021-01-17 14:47:40 -05:00
|
|
|
// PlayersRelationships represents players relationships
|
|
|
|
type PlayersRelationships int
|
|
|
|
|
2021-01-16 15:09:58 -05:00
|
|
|
// Players relationships
|
|
|
|
const (
|
2021-01-17 14:47:40 -05:00
|
|
|
PlayerRelationNeutral PlayersRelationships = iota
|
2021-01-16 15:09:58 -05:00
|
|
|
PlayerRelationFriend
|
|
|
|
PlayerRelationEnemy
|
|
|
|
)
|
2021-01-19 11:39:40 -05:00
|
|
|
|
2021-01-19 11:47:42 -05:00
|
|
|
// determinates a level, which both players should reach to go hostile
|
2021-01-19 11:39:40 -05:00
|
|
|
const (
|
|
|
|
PlayersHostileLevel = 9
|
|
|
|
)
|
|
|
|
|
2021-01-19 11:47:42 -05:00
|
|
|
// determinates max players number for one game
|
2021-01-19 11:39:40 -05:00
|
|
|
const (
|
|
|
|
MaxPlayersInGame = 8
|
|
|
|
)
|