StatsRepository

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun addDeaths(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーにデス数を追加します.

Link copied to clipboard
fun addKills(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーにキル数を追加します.

Link copied to clipboard
fun addMobKills(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーにモブキル数を追加します.

Link copied to clipboard

指定された UUID にマッチするプレイヤーの統計データを検索します.

Link copied to clipboard

指定された UUID のプレイヤーのデス数を取得します.

Link copied to clipboard

指定された UUID のプレイヤーのキルデス比を計算して取得します.

Link copied to clipboard

指定された UUID のプレイヤーのキル数を取得します.

Link copied to clipboard

指定された UUID のプレイヤーのデス数を1増加させます.

Link copied to clipboard

指定された UUID のプレイヤーのキル数を1増加させます.

Link copied to clipboard

指定された UUID のプレイヤーのモブキル数を1増加させます.

Link copied to clipboard
fun setDeaths(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーのデス数を設定します.

Link copied to clipboard
fun setKills(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーのキル数を設定します.

Link copied to clipboard
fun setMobKills(uuid: UUID, amount: UInt): RepositoryResult<Unit>

指定された UUID のプレイヤーのモブキル数を設定します.