first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#include "stdafx.h"
#include "ArrowFireEnchantment.h"
ArrowFireEnchantment::ArrowFireEnchantment(int id, int frequency) : Enchantment(id, frequency, EnchantmentCategory::bow)
{
setDescriptionId(IDS_ENCHANTMENT_ARROW_FIRE);
}
int ArrowFireEnchantment::getMinCost(int level)
{
return 20;
}
int ArrowFireEnchantment::getMaxCost(int level)
{
return 50;
}
int ArrowFireEnchantment::getMaxLevel()
{
return 1;
}