mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-25 21:56:42 +01:00
38 lines
1011 B
Plaintext
38 lines
1011 B
Plaintext
/*
|
|
* # lewd_prefs_choices
|
|
* Used for determining the possible choices for lewd prefs,
|
|
* downstreams can modify this and i don't know,
|
|
* remove "Ask"? or make a very confusing list of options which will make players hate you for it.
|
|
*/
|
|
GLOBAL_LIST_INIT(lewd_prefs_choices, list(
|
|
"Yes",
|
|
"Ask",
|
|
"No"
|
|
))
|
|
|
|
#define CUM_TARGET_MOUTH "mouth"
|
|
#define CUM_TARGET_THROAT "throat"
|
|
#define CUM_TARGET_VAGINA "vagina"
|
|
#define CUM_TARGET_ANUS "anus"
|
|
#define CUM_TARGET_HAND "hand"
|
|
#define CUM_TARGET_BREASTS "breasts"
|
|
#define CUM_TARGET_FEET "feet"
|
|
#define CUM_TARGET_PENIS "penis"
|
|
//Weird defines go here
|
|
#define CUM_TARGET_EARS "ears"
|
|
#define CUM_TARGET_EYES "eyes"
|
|
//
|
|
#define GRINDING_FACE_WITH_ANUS "faceanus"
|
|
#define GRINDING_FACE_WITH_FEET "facefeet"
|
|
#define GRINDING_MOUTH_WITH_FEET "mouthfeet"
|
|
#define THIGH_SMOTHERING "thigh_smother"
|
|
#define NUTS_TO_FACE "nut_face"
|
|
|
|
#define NORMAL_LUST 10
|
|
#define LOW_LUST 1
|
|
|
|
#define REQUIRE_NONE 0
|
|
#define REQUIRE_EXPOSED 1
|
|
#define REQUIRE_UNEXPOSED 2
|
|
#define REQUIRE_ANY 3
|