Boston Basher

From Team Fortress Wiki
Revision as of 14:31, 14 May 2021 by Bucket (talk | contribs) (Undo edit by Bucket (Talk) (2976887))
Jump to: navigation, search
Delinquents all over the country have been harassing old ladies while you were stuck in your nearby generic desert-industrial environment. You missed out on all the extreme elderly-pestering action! No worries, though! With this handmade bat, you can still vent your frustration elsewhere.
Boston Basher publicity blurb

The Boston Basher is a community-created melee weapon for the Scout. It is a bloodstained wooden club covered with spikes and reinforced with metal bands.

This weapon inflicts a five-second bleed effect upon hitting an enemy. Missing the hit, however, applies the damage and bleed effect to the wearer instead; therefore, careful precision is required when attacking up close, particularly with the added risk from the Scout's movement speed. The Boston Basher deals less self-damage compared to when hitting opponents, dealing 58 self-damage compared to 75.

The self-damage effect is not applied if the player hits a teammate or any solid object such as a wall, floor or prop. Missing with a critical swing causes the critical hit sound effect, though only normal damage is inflicted. While under the effects of a Medic's ÜberCharge, missing causes no damage to the player.

Despite its main damage dealing purpose, the Boston Basher can also serve as a means of quickly charging up a Medic's ÜberCharge and if correctly timed, can also provide the Scout with a third or fourth jump, also known as a triple or quad jump. These types of jumps can help assist a Scout to reach higher or further distant areas or ledges, set up ambushes and make escapes not normally possible without the use of the Force-A-Nature and the knock back effect it provides.

The weapon was originally created for the Fancy vs. Nasty Update as a replacement for the Sandman, and has since been officially added to the game.

Damage and function times

See also: Damage
Identical to: Three-Rune Blade
Damage and function times
Damage type Melee
Ranged or Melee damage? Melee
Damage
Base damage 100% 35
Critical 105
Mini-crit 47
Bleeding 8 / s
40 total
Bleeding (mini-crit) 10 / s
50 total
Self-damage 18 + bleeding
58 total
Function times
Attack interval 0.5 s
Bleeding duration 5 s
Values are approximate and determined by community testing.

Demonstration

Crafting

See also: Crafting

Blueprint

Sandman Tribalman's Shiv Boston Basher
Item icon Sandman.png + Item icon Tribalman's Shiv.png = Item icon Boston Basher.png
Class Token - Scout Slot Token - Melee Scrap Metal Possible Results
Item icon Class Token - Scout.png + Item icon Slot Token - Melee.png + Item icon Scrap Metal.png =
Item icon Sandman.png Item icon Holy Mackerel.png Item icon Boston Basher.png Item icon Candy Cane.png
Item icon Sun-on-a-Stick.png Item icon Fan O'War.png Item icon Three-Rune Blade.png Item icon Atomizer.png
Item icon Unarmed Combat.png Item icon Wrap Assassin.png Item icon Freedom Staff.png Item icon Ham Shank.png
Item icon Bat Outta Hell.png Item icon Conscientious Objector.png

As a crafting ingredient

Boston Basher Reclaimed Metal Sun-on-a-Stick
Item icon Boston Basher.png + Item icon Reclaimed Metal.pngx2 = Item icon Sun-on-a-Stick.png

Strange variant


Update history

December 17, 2010 Patch (Australian Christmas)

  • The Boston Basher was added to the game.

December 21, 2010 Patch

January 7, 2011 Patch

  • The Boston Basher was given a unique kill icon.

February 14, 2011 Patch

  • Fixed the Boston Basher's melee attack not destroying remote detonation pipes (Stickybombs).

March 1, 2011 Patch

  • [Undocumented] The Boston Basher was added to the crafting blueprint for the Sun-on-a-Stick.

June 3, 2011 Patch

  • Added community contributed response rules to the Boston Basher.

July 12, 2011

November 12, 2013 Patch

September 17, 2014 Patch

February 29, 2016 Patch

  • [Undocumented] Updated firing sounds for the Boston Basher.

Bugs

  • The user receives no self-damage and self-bleed on miss if the weapon is swung while very close to an enemy.
    • When a player swings a melee weapon, the game saves a list of living enemy players that are within a radius of 57.6 units. When the melee attack misses, the game loops through the list to check if any of the players are still alive. If none of them are, then the attack is considered a "clean miss". A clean miss with the Boston Basher applies self-damage to the user.
    • The intended behaviour, according to developer comments, was to prevent the user from being punished if a swing misses because the intended target was killed by a teammate by looking for potential targets at the start of the swing and checking if all of them are dead by the end of the swing.[1][2] However, the game actually checks if the potential targets are alive instead of if they're dead.

Trivia

  • Unlike the Axtinguisher and the Ubersaw, the Boston Basher did not receive a censored version that removes the blood.
  • The name Boston Basher is a reference to the fact that Scout grew up in Boston and on miss with the weapon, will damage or bash himself.

Gallery

See also

References

  1. game/shared/tf/tf_weaponbase_melee.cpp:
    // Remember if there are potential targets when we start our swing.
    // If there are, the player is exempt from taking "hurt self on miss" damage
    // if ALL of these players have died when our swing has finished, and we didn't hit.
    // This guards against me performing a "good" swing and being punished by a friend
    // killing my target "out from under me".
    
  2. game/shared/tf/tf_weaponbase_melee.cpp:
    // if ALL of my potential targets have been killed by someone else between the 
    // time I started my swing and the time my swing would have landed, don't
    // punish me for it.