2022-11-14 15:53:50 +00:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
2022-11-14 17:42:26 +00:00
|
|
|
#include "EatableItems.h"
|
2022-11-14 15:53:50 +00:00
|
|
|
|
2022-11-15 00:04:46 +00:00
|
|
|
#include "the_twilight_abyss/BaseItems/InventoryComponent.h"
|
2022-11-14 16:52:57 +00:00
|
|
|
#include "the_twilight_abyss/PlayerTemp/TempCharacter.h"
|
|
|
|
|
2022-11-14 15:53:50 +00:00
|
|
|
|
2022-11-15 00:04:46 +00:00
|
|
|
UEatableItems::UEatableItems()
|
|
|
|
{
|
2023-01-12 13:56:30 +00:00
|
|
|
|
2022-11-15 00:04:46 +00:00
|
|
|
}
|
|
|
|
|
2022-11-14 17:42:26 +00:00
|
|
|
void UEatableItems::Use(ATempCharacter* Character)
|
2022-11-14 15:53:50 +00:00
|
|
|
{
|
2022-11-14 16:52:57 +00:00
|
|
|
if(Character)
|
|
|
|
{
|
2023-02-07 00:11:00 +00:00
|
|
|
if(isHealingItem)
|
2022-11-23 00:56:33 +00:00
|
|
|
{
|
2023-02-04 17:56:25 +00:00
|
|
|
if (Character->Health < 100)
|
|
|
|
{
|
|
|
|
Character->Health += 10;
|
|
|
|
UE_LOG(LogTemp, Display, TEXT("Healed"));
|
|
|
|
Character->Inventory->RemoveItem(this);
|
|
|
|
}
|
|
|
|
else if (Character->Health >= 100)
|
|
|
|
{
|
|
|
|
UE_LOG(LogTemp, Display, TEXT("Health is full"));
|
|
|
|
}
|
2022-11-23 00:56:33 +00:00
|
|
|
}
|
2023-02-07 00:11:00 +00:00
|
|
|
|
|
|
|
if(isDamageBuffItem)
|
2022-11-23 00:56:33 +00:00
|
|
|
{
|
|
|
|
// need to add the damage buff functionality here
|
|
|
|
UE_LOG(LogTemp, Display, TEXT("Damage Buffed"));
|
2023-01-12 13:56:30 +00:00
|
|
|
Character->Inventory->RemoveItem(this);
|
2022-11-15 00:04:46 +00:00
|
|
|
}
|
2023-02-07 00:11:00 +00:00
|
|
|
|
|
|
|
if (isAmmoItemType)
|
|
|
|
{
|
|
|
|
UE_LOG(LogTemp, Display, TEXT("ADD AMMO FUNCTIONALITY HERE"));
|
|
|
|
Character->Inventory->RemoveItem(this);
|
|
|
|
}
|
2022-11-14 16:52:57 +00:00
|
|
|
}
|
2022-11-23 00:56:33 +00:00
|
|
|
}
|
2022-11-18 18:19:14 +00:00
|
|
|
|