Monster Script Repository

This is a repository of scripts used by monsters to terrorize the land.

Dracula Werewolf Vampire

Dracula

            function terrorize() {
                return 'Mwahahaha! You shall not escape me!';
            }
        
View More

Werewolf

            function transform() {
                return 'Gah, I am now a werewolf!';
            }
        
View More

Vampire

            function drain_life_force() {
                return 'You will never walk again...';
            }
        
View More