TTT_Role_Overview/roles/en/jester.php

83 lines
2.4 KiB
PHP

<?php
#
# COLORS
#
# Text Color
$tcolor = 'white';
# This is the color defined by https://materializecss.com/color.html
$color = 'pink';
#
# BASEINFO
#
#The Name of the Role
$name = "Jester";
#The Description of the Role, HTML conform :)
$description = "A bad joke might be the last thing you hear from him. He always tries to fool you. And in the moment your bullet hits his head and his dead body sinks motionless to the ground the truth is right in front of you: he did it again.";
#
# TABS
#
#How To play
$howtoplay = "The jester plays in his own team and it's his goal to get killed by someone. To help him triggering other players, he doesn't deal any damage. But he has to be careful. Shooting at people without dealing damage might reveal his role to them. Killing him results for a win of their team, so be careful.";
#With what roles does this role play best?
$playsbestwith = "
<ul>
<li>Swapper</li>
<li>Serialkiller</li>
<li>Infected</li>
<ul>
";
#Convars
$convars = "Normal Role Convars (also found in ULX):
<code># enable or disable this role
ttt_jester_enabled [0/1] (default: 1)
# the percentage of players that are spawned as this role
ttt_jester_pct [0.0..1.0] (default: 1.0)
# the limit of players that spawn as this role each round, this overwrites the percentage
ttt_jester_max [0..n] (default: 1)
# the probability each round of this role being spawned at all
ttt_jester_random [0..100] (default: 50)
# the amount of players needed for this role to spawn
ttt_jester_min_players: [0..n] (default: 8)</code>
Rolespecific Convars:
<code># should it be publicily anounced if there is a jester in a round
ttt2_jes_announce [0/1] (default: 1)
# should the jester be able to push other players with his convar
ttt2_jes_improvised [0/1] (default: 1)
# should the jester be able to carry entities with his magneto stick
ttt2_jes_carry [0/1] (default: 1)</code>";
#
# Credits
#
#The Steam URL to your addon
$steam = "https://steamcommunity.com/sharedfiles/filedetails/?id=1363049665";
#The Source URL to your addon
$source = "https://steamcommunity.com/linkfilter/?url=https://github.com/TTT-2/ttt2-role_jes";
#Creator of the Addon
$author = "Alf21";
#Creatorlink
$authorurl = "https://steamcommunity.com/id/alf21";
# Credittext (can use the above variables)
$ctext = "Alf21: creator of this role addon
Mineotopia: designer of the role icon
KingsNJenssons: creator of the clientside particles and sound effects";
?>