Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 123 additions & 0 deletions addons/sourcemod/configs/FM_CrazyShop.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
"Items"
{
// type: (0 = No amount or time, 1 = amount only, 2 = time only, 3 = both)
// Humans Items
"0"
{
"name" "More HP"
"price" "5"
"type" "1"

"amount" "100.0"
}
"1"
{
"name" "Infect Protection"
"price" "10"
"type" "2"

"time" "15.0"
}
"2"
{
"name" "Super Weapon"
"price" "30"
"type" "3"

"amount" "1.8"
"time" "15.0"
}
"3"
{
"name" "Laser Protection"
"price" "10"
"type" "2"

"time" "20.0"
}
"4"
{
"name" "Unlimited Ammo"
"price" "10"
"type" "2"

"time" "20.0"
}
"5"
{
"name" "Buy a smokegrenade"
"price" "10"
"type" "0"
}
"6"
{
"name" "Slow Beacon"
"price" "30"
"type" "3"

"amount" "0.01"
"time" "15.0"
}

// Zombies Items
"7"
{
"name" "More Speed"
"price" "10"
"type" "3"

"amount" "0.2"
"time" "20.0"
}
"8"
{
"name" "KB Protection"
"price" "20"
"type" "3"

"amount" "0.2"
"time" "15.0"
}
"9"
{
"name" "Lower Gravity"
"price" "10"
"type" "3"

"amount" "-0.2"
"time" "15.0"
}
"10"
{
"name" "Hurting Machine"
"price" "20"
"type" "3"

"amount" "80.0"
"time" "15.0"
}
"11"
{
"name" "Ignite Immunity"
"price" "10"
"type" "2"

"time" "15.0"
}
"12"
{
"name" "Invisibility"
"price" "30"
"type" "2"

"time" "15.0"
}
"13"
{
"name" "Human Pull"
"price" "30"
"type" "2"

"time" "15.0"
}
}
Loading