The Cathedral of Attnam

Changes

Jump to navigation Jump to search
2,522 bytes added ,  03:41, 13 August 2014
Created page with "{{code}} {{spoiler}} //work in progress Kicking with (k) allows the player to apply the full force of his legs upon an adjacent tile and anything that happens to be occupying it ..."
{{code}}
{{spoiler}}
//work in progress
Kicking with (k) allows the player to apply the full force of his legs upon an adjacent tile and anything that happens to be occupying it at the time.

The effect of being kicked depends on what type of entity is on the receiving end. Enemies will make a hit check for damage and being thrown off balance, items will be thrown a certain distance, and walls or other terrain objects will check for damage.
<pre>void character::BeKicked(character* Kicker, item* Boot, bodypart* Leg, v2 HitPos, double KickDamage, double ToHitValue, int Success, int Direction, truth Critical, truth ForceHit)
{
switch(TakeHit(Kicker, Boot, Leg, HitPos, KickDamage, ToHitValue, Success, KICK_ATTACK, Direction, Critical, ForceHit))
{
case HAS_HIT:
case HAS_BLOCKED:
case DID_NO_DAMAGE:
if(IsEnabled() && !CheckBalance(KickDamage))
{
if(IsPlayer())
ADD_MESSAGE("The kick throws you off balance.");
else if(Kicker->IsPlayer())
ADD_MESSAGE("The kick throws %s off balance.", CHAR_DESCRIPTION(DEFINITE));

v2 FallToPos = GetPos() + game::GetMoveVector(Direction);
FallTo(Kicker, FallToPos);
}
}
}</pre>
A kick's '''damage''' is determined by the '''boot''' on the foot used, the user's '''base kick strength''' (default is double the user's unarmed strength), the user's '''LSTR''' and the user's '''kicking skill'''.
<pre>void leg::CalculateDamage()
{
if(!Master)
return;

double WeaponStrength = GetBaseKickStrength() * GetBaseKickStrength();
item* Boot = GetBoot();

if(Boot)
WeaponStrength += Boot->GetWeaponStrength();

double Base = sqrt(5e-5 * WeaponStrength);

if(Boot)
Base += Boot->GetDamageBonus();

KickDamage = Base * sqrt(1e-7 * GetAttribute(LEG_STRENGTH))
* GetHumanoidMaster()->GetCWeaponSkill(KICK)->GetBonus();
}</pre>
A kick's '''to-hit value''' is calculated using the equipped '''boot's to-hit bonus''' and the user's '''AGI''', '''PER''', '''kicking skill''' and '''[[burden]]''' value.
<pre>void leg::CalculateToHitValue()
{
if(!Master)
return;

double BonusMultiplier = 10.;
item* Boot = GetBoot();

if(Boot)
BonusMultiplier += Boot->GetTHVBonus();

KickToHitValue = GetAttribute(AGILITY)
* sqrt(2.5 * Master->GetAttribute(PERCEPTION))
* GetHumanoidMaster()->GetCWeaponSkill(KICK)->GetBonus()
* Master->GetMoveEase()
* BonusMultiplier / 10000000;
}</pre>



== Enemies ==
Enemies that are kicked can both be damaged by it and be thrown backward a few tiles.
Moderator
952

edits

Navigation menu