File:Silver Ammo chart.svg

From Undertale Yellow Wiki
Jump to navigation Jump to search

Original file(SVG file, nominally 1,080 × 720 pixels, file size: 41 KB)

DescriptionChart showing how Silver Ammo's effective AT for perfect shots depends on LV in comparison to Nails and Friendliness Pellets.
NotesGenerated using:
from matplotlib import pyplot as plt
import numpy as np

lv = np.arange(1, 21)
at = np.array([10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48])
silver_ammo = at * 1.25 + 3
nails = at + 10
friendliness_pellets = at + 11

plt.figure(figsize=(12, 8))
plt.plot(lv, silver_ammo, label='Silver Ammo', linestyle='dotted')
plt.plot(lv, nails, label='Nails', linestyle='dashed')
plt.plot(lv, friendliness_pellets, label='Friendliness Pellets', linestyle='dashdot')
plt.xticks(np.arange(1, 21))
plt.legend()
plt.grid()
plt.xlabel('LV')
plt.ylabel('AT')
plt.title('Effective AT for perfect shots')
plt.xlim((1, 20))
plt.ylim((20, 65))
plt.tight_layout()
plt.savefig('silver-ammo.svg')
Type
  • Miscellaneous
SourceUndertale Yellow
AuthorKockaAdmiralac
LicensingThis file is in the public domain.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current23:47, 6 January 2024Thumbnail for version as of 23:47, 6 January 20241,080 × 720 (41 KB)KockaAdmiralac (talk | contribs)== Summary == {{File |description = Chart showing how Sliver Ammo's effective AT for perfect shots depends on LV in comparison to Nails and Friendliness Pellets. |license = pd |author = KockaAdmiralac |notes = Generated using: <syntaxhighlight lang="python"> from matplotlib import pyplot as plt import numpy as np lv = np.arange(1, 21) at = np.array([10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48]) silver_ammo = at * 1.25 + 3...

The following page uses this file:

Metadata