A tiny Twine snippet that pseudo-randomizes a variable and prints it to the screen along with the appropriate image. A basic dice function featuring dinosaurs..
<<set $dino_type to either (“tyrannosaur”, “brontosaurus”, “diplodocus”, “triceratops”, “stegosaurus”)>> | |
You are a <<print $dino_type>>! | |
<<if $dino_type eq “tyrannosaur”>> | |
[img[tyrannosaur.png]] | |
<<elseif $dino_type eq “brontosaurus”>> | |
[img[brontosaurus.jpg]] | |
<<elseif $dino_type eq “stegosaurus”>> | |
[img[stegosaurus.jpg]] | |
<<elseif $dino_type eq “triceratops”>> | |
[img[triceratops.jpg]] | |
<<elseif $dino_type eq “diplodocus”>> | |
[img[diplodocus.jpg]] | |
<<endif>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment