TTT_Role_Overview/roles/en/arsonist.php

76 lines
1.7 KiB
PHP

<?php
#
# COLORS
#
# Text Color
$tcolor = "black";
# This is the color defined by https://materializecss.com/color.html
$color = "orange";
#
# BASEINFO
#
#The Name of the Role
$name = "Arsonist";
#The Description of the Role, HTML conform :)
$description = "He is an arsonist who likes things related to fire.";
#
# TABS
#
#How To play
$howtoplay = "The Arsonist is a partner of the Traitor. The Arsonist have a Flare gun and his own flamethrower.
And he has a flame resistance.";
#With what roles does this role play best?
$playsbestwith = "
<ul>
<li>Occultist</li>
<li>TODO</li>
<li>TODO (/shrug)</li>
<ul>
";
#Convars
$convars = "Normal Role Convars (also found in ULX):
<code># enable or disable this role
ttt_ars_enabled [0/1] (default: 1)
# the percentage of players that are spawned as this role
ttt_ars_pct [0.0..1.0] (default: 0.17)
# the limit of players that spawn as this role each round, this overwrites the percentage
ttt_ars_max [0..n] (default: 1)
# the probability each round of this role being spawned at all
ttt_ars_random [0..100] (default: 50)
# the amount of players needed for this role to spawn
ttt_ars_min_players: [0..n] (default: 6)</code>";
#
# Credits
#
#The Steam URL to your addon
$steam = "https://steamcommunity.com/sharedfiles/filedetails/?id=2652626080";
#The Source URL to your addon
$source = "https://steamcommunity.com/linkfilter/?url=https://github.com/westooooo/ttt2-role_arsonist";
#Creator of the Addon
$author = "Westoon[JPN]";
#Creatorlink
$authorurl = "https://steamcommunity.com/profiles/76561198358406467";
# Credittext (can use the above variables)
$ctext = "Lunex: Creator of this role addon
Pythagorion: A huge thank you for the Icon Designs
Mineotopia: Credits to him for immense help in coding this.";
?>