Skip to content

Commit

Permalink
Mod update 0.8.4
Browse files Browse the repository at this point in the history
Stash bug fix
  • Loading branch information
Kitteh6660 committed Oct 24, 2014
1 parent 0fe168d commit bfe8353
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 4 deletions.
4 changes: 2 additions & 2 deletions classes/classes/CoC.as
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@
//model.debug = debug; // TODO: Set on model?

//Version NUMBER
ver = "0.8.16_mod_0.8.3b";
version = ver + " (<b>Minerva pregnancy fixes</b>)";
ver = "0.8.16_mod_0.8.4";
version = ver + " (<b>Stash import fix</b>)";

//Indicates if building for mobile?
mobile = false;
Expand Down
2 changes: 1 addition & 1 deletion classes/classes/Saves.as
Original file line number Diff line number Diff line change
Expand Up @@ -1764,7 +1764,7 @@ public function loadGameObject(saveData:Object, slot:String = "VOID"):void
}
}
//Set gear slot array
if (saveFile.data.gearStorage == undefined || saveFile.data.gearStorage.length < 27)
if (saveFile.data.gearStorage == undefined)
{
//trace("OLD SAVES DO NOT CONTAIN ITEM STORAGE ARRAY - Creating new!");
inventory.initializeGearStorage();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package classes.Scenes.Areas.HighMountains

public class MinervaCorruption
{

//I might not work on this, unfortunately.
public function MinervaCorruption()
{

Expand Down
56 changes: 56 additions & 0 deletions classes/classes/Scenes/Monsters/GoblinWarrior.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package classes.Scenes.Monsters
{
/**
* ...
* @author Kitteh6660
*/
public class GoblinWarrior extends Goblin
{

public function GoblinWarrior()
{
if (noInit) return;
this.a = "the ";
this.short = "goblin warrior";
this.imageName = "goblinwarrior";
this.long = "Unlike most goblins you've seen, this one is well armed. She is slightly taller than most of the goblins and her hair is in a deep red hue. She's wearing a metal breastplate that covers her torso, offering her more defense. She's wielding a dagger in her right hand and a wooden shield in her left hand. In spite of how well she's armed, her nipples and cooter are exposed.";
this.createVagina(false, VAGINA_WETNESS_DROOLING, VAGINA_LOOSENESS_NORMAL);
this.createStatusAffect(StatusAffects.BonusVCapacity, 40, 0, 0, 0);
createBreastRow(Appearance.breastCupInverse("E"));
this.ass.analLooseness = ANAL_LOOSENESS_TIGHT;
this.ass.analWetness = ANAL_WETNESS_DRY;
this.createStatusAffect(StatusAffects.BonusACapacity,30,0,0,0);
this.tallness = 44 + rand(7);
this.hipRating = HIP_RATING_AMPLE+2;
this.buttRating = BUTT_RATING_LARGE;
this.skinTone = "dark green";
this.hairColor = "red";
this.hairLength = 4;
initStrTouSpeInte(75, 50, 70, 72);
initLibSensCor(45, 45, 60);
this.weaponName = "dagger and shield";
this.weaponVerb = "slash";
this.weaponAttack = 8;
this.armorName = "platemail";
this.armorDef = 12;
this.lust = 50;
this.lustVuln = 0.44
this.temperment = TEMPERMENT_RANDOM_GRAPPLES;
this.level = 16;
this.gems = rand(5) + 5;
this.drop = new WeightedDrop().
add(consumables.GOB_ALE,5).
addMany(1,consumables.L_DRAFT,
consumables.PINKDYE,
consumables.BLUEDYE,
consumables.ORANGDY,
consumables.GREEN_D,
consumables.PURPDYE);
this.special1 = goblinDrugAttack;
this.special2 = goblinTeaseAttack;
checkMonster();
}

}

}
59 changes: 59 additions & 0 deletions classes/classes/Scenes/Monsters/ImpWarlord.as
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package classes.Scenes.Monsters
{
/**
* ...
* @author Kitteh6660
*/
public class ImpWarlord extends Imp
{

public function ImpWarlord()
{
super(true);
this.a = "the ";
this.short = "imp warlord";
this.imageName = "impwarlord";
this.long = "The greater imp has an angular face, complete with curved nose and burnt red skin typical of imps. He has a black hair on his head and his eyes are deep black. Just above his long pointed ears are two curved bovine horns. While still short, he's much taller then the average imp, being nearly four feet tall, and extremely well-muscled. A pair of powerful wings extends out from his shoulders, however, you suspect he wouldn't be able to fly for long due to his extreme bulk. A thick coating of fur starts at his well toned hips and works its way down his powerful legs. His legs end in a pair of oddly jointed, demonic hooves. His demonic figure is completed by a thin tail that has an arrowhead shaped tip.\n\nUnlike most imps, he is wearing a metal chestplate for protection. He doesn't appear to be wearing anything other than his armor and loincloth. He wields a sword in his right hand and he doesn't appear to wield anything in his left hand, suggesting that he also attacks with his claws.";
// this.plural = false;
// Imps now only have demon dicks.
// Not sure if I agree with this, I can imagine the little fuckers abusing the
// shit out of any potions they can get their hands on.
this.createCock(rand(2)+11,2.5,CockTypesEnum.DEMON);
this.balls = 2;
this.ballSize = 1;
this.cumMultiplier = 3;
this.hoursSinceCum = 20;
createBreastRow(0);
this.ass.analLooseness = ANAL_LOOSENESS_STRETCHED;
this.ass.analWetness = ANAL_WETNESS_NORMAL;
this.tallness = rand(14) + 40;
this.hipRating = HIP_RATING_BOYISH;
this.buttRating = BUTT_RATING_TIGHT;
this.lowerBody = LOWER_BODY_TYPE_HOOFED;
this.skinTone = "red";
initStrTouSpeInte(80, 65, 85, 56);
initLibSensCor(55, 35, 100);
this.weaponName = "sword";
this.weaponVerb="slash";
this.weaponAttack = 20;
this.armorName = "platemail";
this.armorDef = 17;
this.bonusHP = 250;
this.lust = 30;
this.lustVuln = .4;
this.temperment = TEMPERMENT_LUSTY_GRAPPLES;
this.level = 14;
this.gems = rand(20) + 40;
this.drop = new WeightedDrop().
add(consumables.MINOBLO,1).
add(consumables.LABOVA_,1).
add(consumables.INCUBID,6).
add(consumables.SUCMILK,6);
this.wingType = WING_TYPE_IMP;
this.special1 = 5019;
checkMonster();
}

}

}

0 comments on commit bfe8353

Please sign in to comment.