First commit.
This commit is contained in:
107
game/images.rpy
Normal file
107
game/images.rpy
Normal file
@@ -0,0 +1,107 @@
|
||||
# Animations.
|
||||
|
||||
image happy:
|
||||
"anita happy open"
|
||||
.2
|
||||
"anita happy closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image angry:
|
||||
"anita angry open"
|
||||
.2
|
||||
"anita angry closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image flirty:
|
||||
"anita flirty open"
|
||||
.2
|
||||
"anita flirty closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image sad:
|
||||
"anita sad open"
|
||||
.2
|
||||
"anita sad closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image confused:
|
||||
"anita confused open"
|
||||
.2
|
||||
"anita confused closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image thinking:
|
||||
"anita thinking open"
|
||||
.2
|
||||
"anita thinking closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image embarrassed:
|
||||
"anita embarrassed open"
|
||||
.2
|
||||
"anita embarrassed closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
image surprised:
|
||||
"anita surprised open"
|
||||
.2
|
||||
"anita surprised closed"
|
||||
.2
|
||||
repeat
|
||||
|
||||
# Composites
|
||||
|
||||
image anita happy = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita happy closed",
|
||||
(0, 0), WhileSpeaking("a", "happy", "anita happy closed"),
|
||||
)
|
||||
|
||||
image anita angry = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita angry closed",
|
||||
(0, 0), WhileSpeaking("a", "angry", "anita angry closed"),
|
||||
)
|
||||
|
||||
image anita flirty = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita flirty closed",
|
||||
(0, 0), WhileSpeaking("a", "flirty", "anita flirty closed"),
|
||||
)
|
||||
|
||||
image anita sad = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita sad closed",
|
||||
(0, 0), WhileSpeaking("a", "sad", "anita sad closed"),
|
||||
)
|
||||
|
||||
image anita confused = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita confused closed",
|
||||
(0, 0), WhileSpeaking("a", "confused", "anita confused closed"),
|
||||
)
|
||||
|
||||
image anita thinking = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita thinking closed",
|
||||
(0, 0), WhileSpeaking("a", "thinking", "anita thinking closed"),
|
||||
)
|
||||
|
||||
image anita embarrassed = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita embarrassed closed",
|
||||
(0, 0), WhileSpeaking("a", "embarrassed", "anita embarrassed closed"),
|
||||
)
|
||||
|
||||
image anita surprised = Composite(
|
||||
(484, 1080),
|
||||
(0, 0), "anita surprised closed",
|
||||
(0, 0), WhileSpeaking("a", "surprised", "anita surprised closed"),
|
||||
)
|
||||
Reference in New Issue
Block a user