Added Kitty Harness Panel Gag from Verity ()

* Added Kitty Harness Panel Gag from Verity

* color picker now loads previous selected color
This commit is contained in:
B7Rad7 2019-07-14 21:25:49 -07:00 committed by Ben987
parent f11fbc9ae1
commit b5737ab620
7 changed files with 4 additions and 2 deletions

View file

@ -258,6 +258,7 @@ ItemMouth,DusterGag,Duster Gag
ItemMouth,HarnessPonyBits,Bit Gag
ItemMouth,PumpGag,Pump Gag
ItemMouth,KittyGag,Kitty Mask Gag
ItemMouth,KittenHarnessPanelGag,Kitty Harness Gag
ItemMouth,CarrotGag,Rubber Carrot Gag
ItemMouth,RegularSleepingPill,Sleeping Pill
ItemHead,,Head

1 Cloth Cloth
258 ItemMouth HarnessPonyBits Bit Gag
259 ItemMouth PumpGag Pump Gag
260 ItemMouth KittyGag Kitty Mask Gag
261 ItemMouth KittenHarnessPanelGag Kitty Harness Gag
262 ItemMouth CarrotGag Rubber Carrot Gag
263 ItemMouth RegularSleepingPill Sleeping Pill
264 ItemHead Head

View file

@ -590,6 +590,7 @@ var AssetFemale3DCG = [
{ Name: "HarnessPonyBits", Random: false, Difficulty: 4, Effect: ["GagHeavy"], Value: -1, Time: 20, AllowLock: true },
{ Name: "PumpGag", Effect: [], Random: false, Extended: true, Value: 100, Time: 20, AllowLock: true, ExpressionTrigger: [{Group: "Eyebrows", Name: "Soft", Timer: 10}], AllowEffect: ["GagLight", "GagNormal", "GagHeavy", "GagTotal"] },
{ Name: "KittyGag", Effect: ["GagLight"], Difficulty: -4, Value: 20, Time: 10, ExpressionTrigger: [{Group: "Blush", Name: "Light", Timer: 5}, {Group: "Eyes", Name: "Closed", Timer: 5}] },
{ Name: "KittenHarnessPanelGag", Effect: ["GagHeavy"], Difficulty: 6, Value: 80, Time: 20, AllowLock: true },
{ Name: "CarrotGag", Effect: ["GagHeavy"], Random: false, Value: 50, Time: 15 },
{ Name: "RegularSleepingPill", Enable: false, Wear: false, Value: -1, Bonus: [{Type: "KidnapSneakiness", Factor: 3}] }
]
@ -610,7 +611,7 @@ var AssetFemale3DCG = [
{ Name: "LeatherHood", Effect: ["BlindHeavy", "Prone", "GagLight"], Hide: ["HairFront", "HairBack", "Glasses", "ItemMouth", "Eyes"], Block: ["ItemMouth", "ItemNeck"], Difficulty: 50, Value: 90, Time: 15, AllowLock: true },
{ Name: "LeatherHoodOpenEyes", Effect: ["Prone", "GagLight"], Hide: ["HairFront", "HairBack", "Glasses", "ItemMouth"], Block: ["ItemMouth", "ItemNeck"], Difficulty: 50, Value: 60, Time: 15, AllowLock: true },
{ Name: "StuddedBlindfold", Effect: ["BlindNormal", "Prone"], Hide: ["Glasses"], Difficulty: 2, Value: -1, Time: 5, AllowLock: true },
{ Name: "KittyBlindfold", Effect: ["BlindLight", "Prone"], Hide: ["Glasses"], Value: 25, Time: 5 },
{ Name: "KittyBlindfold", Effect: ["BlindLight", "Prone"], Hide: ["Glasses"], Value: 25, Time: 5, AllowLock: true },
{ Name: "DuctTape", Effect: ["BlindNormal", "Prone"], Hide: ["Glasses"], Value: 50, Time: 10, RemoveTime: 5, BuyGroup: "DuctTape" }
]
},

Binary file not shown.

After

(image error) Size: 167 B

Binary file not shown.

After

(image error) Size: 5.5 KiB

Binary file not shown.

After

(image error) Size: 6.9 KiB

Binary file not shown.

After

(image error) Size: 28 KiB

View file

@ -390,7 +390,7 @@ function DialogMenuButtonClick() {
// Color picker Icon - Starts the color picking
if (DialogMenuButton[I] == "ColorPick") {
ElementCreateInput("InputColor", "text", "");
ElementCreateInput("InputColor", "text", (DialogColorSelect!=null) ? DialogColorSelect.toString() : "");
DialogColor = "";
DialogMenuButtonBuild(C);
return;