Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fc-pregmod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pregmodfan
fc-pregmod
Commits
6dfb5fdb
Commit
6dfb5fdb
authored
4 years ago
by
lowercasedonkey
Browse files
Options
Downloads
Patches
Plain Diff
more
parent
c0599a5c
No related branches found
No related tags found
1 merge request
!8026
Custom slave to js
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/markets/specificMarkets/customSlaveMarket.js
+31
-0
31 additions, 0 deletions
src/markets/specificMarkets/customSlaveMarket.js
with
31 additions
and
0 deletions
src/markets/specificMarkets/customSlaveMarket.js
+
31
−
0
View file @
6dfb5fdb
...
@@ -7,6 +7,8 @@ App.Markets["Custom Slave"] = function() {
...
@@ -7,6 +7,8 @@ App.Markets["Custom Slave"] = function() {
el
.
append
(
health
());
el
.
append
(
health
());
el
.
append
(
muscles
());
el
.
append
(
muscles
());
el
.
append
(
lips
());
el
.
append
(
lips
());
el
.
append
(
voice
());
// can't we just iterate these in an array?
return
el
;
return
el
;
...
@@ -149,6 +151,35 @@ App.Markets["Custom Slave"] = function() {
...
@@ -149,6 +151,35 @@ App.Markets["Custom Slave"] = function() {
return
el
;
return
el
;
}
}
function
voice
()
{
const
el
=
document
.
createElement
(
"
div
"
);
const
slaveProperty
=
"
lips
"
;
const
choices
=
new
Map
([
[
"
3
"
,
"
High, girly
"
],
[
"
2
"
,
"
Feminine
"
],
[
"
1
"
,
"
Deep
"
],
[
"
0
"
,
"
Mute
"
],
[
"
-1
"
,
"
Voice is unimportant
"
],
]);
createDescription
(
el
,
description
,
slaveProperty
);
el
.
append
(
choicesMaker
(
slaveProperty
,
choices
,
description
));
function
description
()
{
for
(
const
[
value
,
text
]
of
choices
)
{
if
(
slave
.
voice
===
Number
(
value
))
{
if
(
slave
.
voice
===
-
1
)
{
return
`
${
text
}
.`
;
}
else
{
return
`
${
text
}
voice.`
;
}
}
}
}
return
el
;
}
/**
/**
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment