mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-29 23:15:55 -04:00
63 lines
2.0 KiB
Java
Executable File
63 lines
2.0 KiB
Java
Executable File
package script.item.comestible;
|
|
|
|
import script.attrib_mod;
|
|
import script.library.consumable;
|
|
import script.library.utils;
|
|
import script.obj_id;
|
|
|
|
public class foraged extends script.item.comestible.comestible
|
|
{
|
|
public foraged()
|
|
{
|
|
}
|
|
public static final String FORAGED_DATA = "datatables/foraging/forage_global.iff";
|
|
public int OnGetAttributes(obj_id self, obj_id player, String[] names, String[] attribs) throws InterruptedException
|
|
{
|
|
attrib_mod[] am = consumable.getForagedFoodMods(self);
|
|
int n = utils.getValidAttributeIndex(names);
|
|
if (n == -1)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
names[n] = EXAM_ATTRIB_MOD;
|
|
if ((am == null) || (am.length == 0))
|
|
{
|
|
attribs[n] = EXAM_NONE;
|
|
n++;
|
|
if (n > names.length)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int numMods = am.length;
|
|
attribs[n] = Integer.toString(numMods);
|
|
n++;
|
|
if (n > names.length)
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
for (attrib_mod attrib_mod : am) {
|
|
int attrib = attrib_mod.getAttribute();
|
|
int val = attrib_mod.getValue();
|
|
int newVal = Integer.MIN_VALUE;
|
|
int duration = (int) (attrib_mod.getDuration());
|
|
String sVal = "";
|
|
if (newVal > 0) {
|
|
sVal = "+" + newVal;
|
|
} else if (newVal < 0) {
|
|
sVal = Integer.toString(newVal);
|
|
}
|
|
names[n] = toLower(consumable.STAT_NAME[attrib]);
|
|
attribs[n] = sVal + "%, " + duration + "s";
|
|
n++;
|
|
if (n > names.length) {
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|