According to the wiki summary, Crude Savicite piercings should increase lust gain by 5%, while regular Savicite piercings should increase minimum lust level by 2. However, currently the Crude Savicite piercings receive both of these effects, while regular Savicite piercings have none:
example, comparison of crude and regular hoop piercing:
example, comparison of crude and regular hoop piercing:
Code:
export class CrudeSaviciteHoopPiercing extends ItemSlotClass
{
//...
constructor()
{
//...
this.type = GLOBAL.PIERCING;
this.lustGain = 0.05;
this.lustMin = 2;
this.shortName = "CruSavHoop";
this.longName = "Crude Savicite Hoop";
Code:
export class SaviciteHoopPiercing extends ItemSlotClass
{
// ...
constructor()
{
//...
this.type = GLOBAL.PIERCING;
this.shortName = "SavHoop";
this.longName = "Savicite Hoop";
// ...