Task #1439
Add Victory Pack items
| Status: | Resolved | Start date: | 09/07/2011 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | 09/09/2011 | |
| Assignee: | % Done: | 100% |
||
| Category: | GameSupport | |||
| Target version: | 1.6.15 | |||
| Blocking Target Version: | No |
Description
New weapons codes are cow_mangler and righteous_bison. Pictures are in the zip.
Probably more new items to come in the next two days?
Subtasks
Associated revisions
GameSupport: Initial commit for upgrade SQL for TF2 Victory Pack (#1439) (Packhead)
Web: Added images for three new TF2 weapons (#1439) (bug)
History
#1
Updated by Munra 10 months ago
Nice job and ya they will probably be another update by the end of the week as they already announced an update that will change server mechanics. Don't know if they will add any more weapons with that update.
#3
Updated by Bluthund 8 months ago
Here you go:
1INSERT INTO `hlstats_Weapons` (`game`, `code`, `name`, `modifier`) VALUES
2('tf', 'cow_mangler', 'Cow Mangler 5000', 1.00),
3('tf', 'righteous_bison', 'Righteous Bison', 1.00);
4
5INSERT INTO `hlstats_Ribbons` (`awardCode`, `awardCount`, `special`, `game`, `image`, `ribbonName`) VALUES
6('cow_mangler',1,0,'tf','1_cow_mangler.png','Bronze Cow Mangler'),
7('cow_mangler',5,0,'tf','2_cow_mangler.png','Silver Cow Mangler'),
8('cow_mangler',10,0,'tf','3_cow_mangler.png','Gold Cow Mangler'),
9('righteous_bison',1,0,'tf','1_righteous_bison.png','Bronze Righteous Bison'),
10('righteous_bison',5,0,'tf','2_righteous_bison.png','Silver Righteous Bison'),
11('righteous_bison',10,0,'tf','3_righteous_bison.png','Gold Righteous Bison');
12
13INSERT INTO `hlstats_Awards` (`awardType`, `game`, `code`, `name`, `verb`) VALUES
14('W','tf','cow_mangler','Cattle Wrecker','cow mangler kills'),
15('W','tf','righteous_bison', 'Spaceman Spiff', 'righteous bison kills');
There also is an additional action that came with the Victory Pack Update, the Deflected Cow Mangler Shot (no image for that one in this pack):
1INSERT INTO `hlstats_Weapons` (`game`, `code`, `name`, `modifier`) VALUES
2('tf', 'tf_projectile_energy_ball', 'Deflected Cow Mangler Shot', 2.00);
3
4INSERT INTO `hlstats_Ribbons` (`awardCode`, `awardCount`, `special`, `game`, `image`, `ribbonName`) VALUES
5('tf_projectile_energy_ball',1,0,'tf','1_tf_projectile_energy_ball.png','Bronze Deflected Cow Mangler Shot'),
6('tf_projectile_energy_ball',5,0,'tf','2_tf_projectile_energy_ball.png','Silver Deflected Cow Mangler Shot'),
7('tf_projectile_energy_ball',10,0,'tf','3_tf_projectile_energy_ball.png','Gold Deflected Cow Mangler Shot');
8
9INSERT INTO `hlstats_Awards` (`awardType`, `game`, `code`, `name`, `verb`) VALUES
10('W','tf','tf_projectile_energy_ball', 'Space-ray Deflector', 'kills with deflected cow mangler shot');
The award names are chosen arbitrarily, so feel free to change them if you want or need to (as Spaceman Spiff is a reference to Calvin and Hobbes).
#4
Updated by Bluthund 8 months ago
- File victory-pack.sql added
Adding the above sql statements as an sql-script.