Fallout Wiki
Advertisement
Fallout Wiki

In-game, this item is called "2076 World Series Baseball Bat", with the first letter of each word capitalized. Not sure if that is necessarily a call to move this page as an adjustment, but for the sake of correctness I'm leaving the note. --Djsdjs (talk) 23:43, November 28, 2015 (UTC)

Words like "baseball bat" are meant to be written like that. It is not a personal noun, like a person's name, to write it in uppercase letters. ☢ Energy X ☣ 23:46, November 28, 2015 (UTC)

However, in this case, "baseball bat" is part of the proper name of this weapon and capitalization as proper nouns is warranted. 174.59.49.222 10:34, December 21, 2015 (UTC)

Companions[]

Will the effect trigger if I give it to a companion? My build doesn't lend itself to melee but I would get a kick out of having a follower 'knock one out of the park' every now and then.

[]

Logo is properly displayed on workbench model. It's just on the opposite side. 174.59.49.222 10:34, December 21, 2015 (UTC)

Script and formula[]

ObjectReference property DN070_WorldSeriesBatEffectMarker Auto Const Keyword property DN070_WorldSeriesBatKnockdownEffect_ExclusionKeyword Auto Const Sound property UIPerkGrandSlamHit Auto Const ActorValue property Luck Auto Const int property minPushForce = 10 Auto Const int property maxPushForce = 15 Auto Const

Event OnEffectStart(actor Target, actor Caster) Actor player = Game.GetPlayer() DN070_WorldSeriesBatEffectMarker.MoveTo(player) DN070_WorldSeriesBatEffectMarker.SetPosition(DN070_WorldSeriesBatEffectMarker.GetPositionX(), DN070_WorldSeriesBatEffectMarker.GetPositionY(), DN070_WorldSeriesBatEffectMarker.GetPositionZ() + 96) player.PushActorAway(Target, Utility.RandomInt(minPushForce, (maxPushForce + (player.GetValue(Luck) * 2)) as int)) UIPerkGrandSlamHit.Play(player) Target.AddKeyword(DN070_WorldSeriesBatKnockdownEffect_ExclusionKeyword) EndEvent

Luck increases the force targets are pushed with. Due to the added keyword the effect will only work once per target. Whether it will work again after respawn needs confirmation. --47.214.20.207 16:10, November 22, 2016 (UTC)

Advertisement