- Nov 20, 2017
- 5,634
- 13,384
Looking at the Ren'py files, suprised that Stan don't think:
Python:
...
define jy = Character("Johnnie", color="#fdff33", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define jyt = Character("Johnnie's thoughts", color="#fdff33", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define bb = Character("Bad Bob", color="#f30909", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define bbt = Character("Bad Bob's thoughts", color="#f30909", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define sn = Character("Stan", color="#dad3d3", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define dl = Character("Della", color="#33e6ff", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define dlt = Character("Della's thoughts", color="#33e6ff", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define jz = Character("Jesus", color="#63a95e", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
define pa = Character("Paco", color="#c2c63d", who_outlines=[ (2, "#000000") ], what_outlines=[ (2, "#000000") ])
...