forked from ErinaSugino/Starbound-SBR-Mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsxb_plugin.climax.config
200 lines (172 loc) · 4.83 KB
/
sxb_plugin.climax.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/**
* Plugin - Climax
* Enabled Default? Yes, but can be disabled in the sexbound.config file
*
* Controls an actor's ability to climax during sex.
*/
{
/**
* true := Enables NPCs to automatically climax when they reach maximum climax points (Default).
* false := Disables NPCs from automatically climaxing.
*/
"enableNPCAutoClimax": true,
/**
* true := Enables Monsters to automatically climax when they reach maximum climax points (Default).
* false := Disables Monsters from automatically climaxing.
*/
"enableMonsterAutoClimax": true,
/**
* When auto-climax is enabled determines the chance of simultaneous climaxing of actors which are close to doing so.
*/
"nonPlayerClimaxChainChance": 0.33,
/**
* true := Prioritize player over NPC AI - NPCs don't auto-climax when a player is present (and in control)
* false := NPCs auto-climax (if enabled above) as normal even with a player present
*/
"prioritizePlayer": true,
/**
* true := Enables climax sound effect (Default).
* false := Disables climax sound effects.
*/
"enableClimaxSounds": true,
/**
* true := Enables climax particles (Default).
* false := Disables climax particles.
*/
"enableClimaxParticles": true,
/**
* true := Enables liquids to be spawned on every orgasm.
* false := Disables them (Default).
*/
"enableSpawnLiquids": true,
/**
* This defines the liquid that a climax projectile can spawn.
*/
"projectileLiquid": {
"default": {
"male": "semen",
"female": "ejaculant"
}
},
/**
* Mechanic of Lustbound - some objects (like the milkingmachine and ovipositor dildo) can spawn items when used. This turns it on or off.
*/
"enableSpawnItems": true,
/**
* Mechanic of Lustbound - the milkingmachine (and v2) generate items upon climax. This list defines which item it is per species (or default) per gender.
*/
"projectileItem": {
"default": {
"male": "liquidsemen",
"female": "liquidejaculant"
}
},
/**
* This number range determines how quickly an actor gains climax points during
* the 'sexState' state.
*
* Default value - [ 0.5, 2.0 ]
*/
"defaultIncrease": [0.5, 2.0],
/**
* This number range determines how quickly an actor loses climax points during
* the 'idleState' state.
*
* Default value - [ 0.5, 2.0 ]
*/
"defaultDecrease": [0.5, 1.0],
/**
* This number sets how many climax points / second an actor consumes while it
* is having climax.
*
* Default value - 10
*/
"drainMultiplier": 7.5,
/**
* Sets a range of percentages where a random percentage within the range will
* be removed from the actor's arousal points.
*
* Default value - [ 0.25, 0.9 ]
*/
"arousalPenalty": [0.1, 0.25],
/**
* This is the starting amount of climax points for an actor.
*
* Default value - 0
*/
"currentPoints": 0,
/**
* This number indicates the minimum amount of climax points possible.
*
* Default value - 0
*/
"minPoints": 0,
/**
* This number indicates the maximum amount of climax points possible.
*
* Default value - 100
*/
"maxPoints": 100,
/**
* A list of sexbound statuses that prevent an actor from becoming pregnant.
*/
"preventStatuses": ["infertile", "equipped_condom"],
/**
* A list of sexbound statuses that prevent a male actor from emitting visible climax effects.
*/
"preventStatusesVisible": ["equipped_condom"],
/**
* This number indicates the minimum amount of climax points that are needed to climax.
*
* Default value - 50
*/
"threshold": 90,
/**
* This range of numbers will control how often the actor has an orgasm.
*
* Default value - [ 0.5, 1.5 ]
*/
"shotCooldown": [0.3, 1.5],
/**
* Enable or disable the cum inflation mechanic
*/
"enableInflation": true,
/**
* This range of numbers determines how quickly an actor's inflation decays when dripping
*
* Default value - [ 0.2, 0,3 ]
*/
"dripRate": [ 0.2, 0.3 ],
/**
* Affects the overall rate of dripping based on inflation levels
*
* Default value - 1.5
*/
"dripSpeed": 1.5,
/**
* Rate at which inflation levels increase every burst of a climax
*
* Default value - 0.1
*/
"inflationRate": 0.1,
/**
* Determines the inflation level needed to show the pregnant (inflated) belly sprite
*
* Default value - 7.5
*/
"inflationThreshold": 7.5,
/**
* Determines the inflation level needed force dripping at all times
*
* Default value - 8.5
*/
"forcedDripThreshold": 8.5,
/**
* An array of sounds to audibly indicate when an actor is climaxing.
*/
"sounds": ["/sfx/sexbound/cum/squish.ogg"],
/**
* Disable special condom logic (infinite, non-degrading, no break chance, just protection)
*/
"legacyCondoms": false
}