-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1898 from Wotuu/development
Release v6.9.2
- Loading branch information
Showing
71 changed files
with
16,457 additions
and
433 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
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
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
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
7 changes: 7 additions & 0 deletions
7
app/Logic/CombatLog/CombatEvents/Prefixes/SwingDamageLandedSupport.php
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,7 @@ | ||
<?php | ||
|
||
namespace App\Logic\CombatLog\CombatEvents\Prefixes; | ||
|
||
class SwingDamageLandedSupport extends Range | ||
{ | ||
} |
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
8 changes: 8 additions & 0 deletions
8
app/Logic/CombatLog/CombatEvents/Suffixes/DamageLandedSupport.php
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,8 @@ | ||
<?php | ||
|
||
namespace App\Logic\CombatLog\CombatEvents\Suffixes; | ||
|
||
class DamageLandedSupport extends DamageSupport | ||
{ | ||
|
||
} |
41 changes: 41 additions & 0 deletions
41
app/Logic/CombatLog/CombatEvents/Suffixes/DamageSupport.php
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,41 @@ | ||
<?php | ||
|
||
namespace App\Logic\CombatLog\CombatEvents\Suffixes; | ||
|
||
use App\Logic\CombatLog\CombatEvents\Interfaces\HasParameters; | ||
use App\Logic\CombatLog\Guid\Guid; | ||
|
||
class DamageSupport extends Damage | ||
{ | ||
private Guid $supportGuid; | ||
|
||
/** | ||
* @return Guid|null | ||
*/ | ||
public function getSupportGuid(): ?Guid | ||
{ | ||
return $this->supportGuid; | ||
} | ||
|
||
/** | ||
* @param array $parameters | ||
* @return HasParameters | ||
*/ | ||
public function setParameters(array $parameters): HasParameters | ||
{ | ||
parent::setParameters($parameters); | ||
|
||
$this->supportGuid = Guid::createFromGuidString($parameters[10]); | ||
|
||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* @return int | ||
*/ | ||
public function getParameterCount(): int | ||
{ | ||
return 11; | ||
} | ||
} |
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,41 @@ | ||
<?php | ||
|
||
namespace App\Logic\CombatLog\CombatEvents\Suffixes; | ||
|
||
use App\Logic\CombatLog\CombatEvents\Interfaces\HasParameters; | ||
use App\Logic\CombatLog\Guid\Guid; | ||
|
||
class HealSupport extends Heal | ||
{ | ||
private Guid $supportGuid; | ||
|
||
/** | ||
* @return Guid|null | ||
*/ | ||
public function getSupportGuid(): ?Guid | ||
{ | ||
return $this->supportGuid; | ||
} | ||
|
||
/** | ||
* @param array $parameters | ||
* @return HasParameters | ||
*/ | ||
public function setParameters(array $parameters): HasParameters | ||
{ | ||
parent::setParameters($parameters); | ||
|
||
$this->supportGuid = Guid::createFromGuidString($parameters[5]); | ||
|
||
return $this; | ||
} | ||
|
||
|
||
/** | ||
* @return int | ||
*/ | ||
public function getParameterCount(): int | ||
{ | ||
return 6; | ||
} | ||
} |
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
Oops, something went wrong.