├── AssemblyInfo.cs ├── Global.cs ├── Microsoft.Xna.Framework.RuntimeProfile ├── Terraria.csproj ├── Terraria.sln ├── Terraria.suo ├── Terraria ├── ChatLine.cs ├── Chest.cs ├── ClientSock.cs ├── Cloud.cs ├── Collision.cs ├── CombatText.cs ├── Dust.cs ├── Gore.cs ├── Item.cs ├── Lighting.cs ├── Liquid.cs ├── LiquidBuffer.cs ├── Main.cs ├── NPC.cs ├── NetMessage.cs ├── Netplay.cs ├── Player.cs ├── Program.cs ├── Projectile.cs ├── Recipe.cs ├── ServerSock.cs ├── Sign.cs ├── Star.cs ├── Steam.cs ├── Tile.cs ├── WorldGen.cs └── messageBuffer.cs ├── bin ├── Debug │ ├── Content │ │ ├── Fonts │ │ │ ├── Combat_Text.xnb │ │ │ ├── Death_Text.xnb │ │ │ ├── Item_Stack.xnb │ │ │ ├── Mouse_Text.xnb │ │ │ └── Title_Font.xnb │ │ ├── Images │ │ │ ├── Arm_Bone.xnb │ │ │ ├── Armor_Arm_1.xnb │ │ │ ├── Armor_Arm_2.xnb │ │ │ ├── Armor_Arm_3.xnb │ │ │ ├── Armor_Arm_4.xnb │ │ │ ├── Armor_Arm_5.xnb │ │ │ ├── Armor_Arm_6.xnb │ │ │ ├── Armor_Arm_7.xnb │ │ │ ├── Armor_Arm_8.xnb │ │ │ ├── Armor_Arm_9.xnb │ │ │ ├── Armor_Body_1.xnb │ │ │ ├── Armor_Body_2.xnb │ │ │ ├── Armor_Body_3.xnb │ │ │ ├── Armor_Body_4.xnb │ │ │ ├── Armor_Body_5.xnb │ │ │ ├── Armor_Body_6.xnb │ │ │ ├── Armor_Body_7.xnb │ │ │ ├── Armor_Body_8.xnb │ │ │ ├── Armor_Body_9.xnb │ │ │ ├── Armor_Head_1.xnb │ │ │ ├── Armor_Head_10.xnb │ │ │ ├── Armor_Head_11.xnb │ │ │ ├── Armor_Head_2.xnb │ │ │ ├── Armor_Head_3.xnb │ │ │ ├── Armor_Head_4.xnb │ │ │ ├── Armor_Head_5.xnb │ │ │ ├── Armor_Head_6.xnb │ │ │ ├── Armor_Head_7.xnb │ │ │ ├── Armor_Head_8.xnb │ │ │ ├── Armor_Head_9.xnb │ │ │ ├── Armor_Legs_1.xnb │ │ │ ├── Armor_Legs_2.xnb │ │ │ ├── Armor_Legs_3.xnb │ │ │ ├── Armor_Legs_4.xnb │ │ │ ├── Armor_Legs_5.xnb │ │ │ ├── Armor_Legs_6.xnb │ │ │ ├── Armor_Legs_7.xnb │ │ │ ├── Armor_Legs_8.xnb │ │ │ ├── Armor_Legs_9.xnb │ │ │ ├── Background_0.xnb │ │ │ ├── Background_1.xnb │ │ │ ├── Background_2.xnb │ │ │ ├── Background_3.xnb │ │ │ ├── Background_4.xnb │ │ │ ├── Background_5.xnb │ │ │ ├── Background_6.xnb │ │ │ ├── Black_Tile.xnb │ │ │ ├── Bubble.xnb │ │ │ ├── Chain.xnb │ │ │ ├── Chain2.xnb │ │ │ ├── Chain3.xnb │ │ │ ├── Chain4.xnb │ │ │ ├── Chain5.xnb │ │ │ ├── Chain6.xnb │ │ │ ├── Chat.xnb │ │ │ ├── Chat2.xnb │ │ │ ├── Chat_Back.xnb │ │ │ ├── Cloud_0.xnb │ │ │ ├── Cloud_1.xnb │ │ │ ├── Cloud_2.xnb │ │ │ ├── Cloud_3.xnb │ │ │ ├── CoolDown.xnb │ │ │ ├── Cursor.xnb │ │ │ ├── Dust.xnb │ │ │ ├── Gore_1.xnb │ │ │ ├── Gore_10.xnb │ │ │ ├── Gore_11.xnb │ │ │ ├── Gore_12.xnb │ │ │ ├── Gore_13.xnb │ │ │ ├── Gore_14.xnb │ │ │ ├── Gore_15.xnb │ │ │ ├── Gore_16.xnb │ │ │ ├── Gore_17.xnb │ │ │ ├── Gore_18.xnb │ │ │ ├── Gore_19.xnb │ │ │ ├── Gore_2.xnb │ │ │ ├── Gore_20.xnb │ │ │ ├── Gore_21.xnb │ │ │ ├── Gore_22.xnb │ │ │ ├── Gore_23.xnb │ │ │ ├── Gore_24.xnb │ │ │ ├── Gore_25.xnb │ │ │ ├── Gore_26.xnb │ │ │ ├── Gore_27.xnb │ │ │ ├── Gore_28.xnb │ │ │ ├── Gore_29.xnb │ │ │ ├── Gore_3.xnb │ │ │ ├── Gore_30.xnb │ │ │ ├── Gore_31.xnb │ │ │ ├── Gore_32.xnb │ │ │ ├── Gore_33.xnb │ │ │ ├── Gore_34.xnb │ │ │ ├── Gore_35.xnb │ │ │ ├── Gore_36.xnb │ │ │ ├── Gore_37.xnb │ │ │ ├── Gore_38.xnb │ │ │ ├── Gore_39.xnb │ │ │ ├── Gore_4.xnb │ │ │ ├── Gore_40.xnb │ │ │ ├── Gore_41.xnb │ │ │ ├── Gore_42.xnb │ │ │ ├── Gore_43.xnb │ │ │ ├── Gore_44.xnb │ │ │ ├── Gore_45.xnb │ │ │ ├── Gore_46.xnb │ │ │ ├── Gore_47.xnb │ │ │ ├── Gore_48.xnb │ │ │ ├── Gore_49.xnb │ │ │ ├── Gore_5.xnb │ │ │ ├── Gore_50.xnb │ │ │ ├── Gore_51.xnb │ │ │ ├── Gore_52.xnb │ │ │ ├── Gore_53.xnb │ │ │ ├── Gore_54.xnb │ │ │ ├── Gore_55.xnb │ │ │ ├── Gore_56.xnb │ │ │ ├── Gore_57.xnb │ │ │ ├── Gore_58.xnb │ │ │ ├── Gore_59.xnb │ │ │ ├── Gore_6.xnb │ │ │ ├── Gore_60.xnb │ │ │ ├── Gore_61.xnb │ │ │ ├── Gore_62.xnb │ │ │ ├── Gore_63.xnb │ │ │ ├── Gore_64.xnb │ │ │ ├── Gore_65.xnb │ │ │ ├── Gore_66.xnb │ │ │ ├── Gore_67.xnb │ │ │ ├── Gore_68.xnb │ │ │ ├── Gore_69.xnb │ │ │ ├── Gore_7.xnb │ │ │ ├── Gore_70.xnb │ │ │ ├── Gore_71.xnb │ │ │ ├── Gore_72.xnb │ │ │ ├── Gore_8.xnb │ │ │ ├── Gore_9.xnb │ │ │ ├── Heart.xnb │ │ │ ├── Inventory_Back.xnb │ │ │ ├── Item_0.xnb │ │ │ ├── Item_1.xnb │ │ │ ├── Item_10.xnb │ │ │ ├── Item_100.xnb │ │ │ ├── Item_101.xnb │ │ │ ├── Item_102.xnb │ │ │ ├── Item_103.xnb │ │ │ ├── Item_104.xnb │ │ │ ├── Item_105.xnb │ │ │ ├── Item_106.xnb │ │ │ ├── Item_107.xnb │ │ │ ├── Item_108.xnb │ │ │ ├── Item_109.xnb │ │ │ ├── Item_11.xnb │ │ │ ├── Item_110.xnb │ │ │ ├── Item_111.xnb │ │ │ ├── Item_112.xnb │ │ │ ├── Item_113.xnb │ │ │ ├── Item_114.xnb │ │ │ ├── Item_115.xnb │ │ │ ├── Item_116.xnb │ │ │ ├── Item_117.xnb │ │ │ ├── Item_118.xnb │ │ │ ├── Item_119.xnb │ │ │ ├── Item_12.xnb │ │ │ ├── Item_120.xnb │ │ │ ├── Item_121.xnb │ │ │ ├── Item_122.xnb │ │ │ ├── Item_123.xnb │ │ │ ├── Item_124.xnb │ │ │ ├── Item_125.xnb │ │ │ ├── Item_126.xnb │ │ │ ├── Item_127.xnb │ │ │ ├── Item_128.xnb │ │ │ ├── Item_129.xnb │ │ │ ├── Item_13.xnb │ │ │ ├── Item_130.xnb │ │ │ ├── Item_131.xnb │ │ │ ├── Item_132.xnb │ │ │ ├── Item_133.xnb │ │ │ ├── Item_134.xnb │ │ │ ├── Item_135.xnb │ │ │ ├── Item_136.xnb │ │ │ ├── Item_137.xnb │ │ │ ├── Item_138.xnb │ │ │ ├── Item_139.xnb │ │ │ ├── Item_14.xnb │ │ │ ├── Item_140.xnb │ │ │ ├── Item_141.xnb │ │ │ ├── Item_142.xnb │ │ │ ├── Item_143.xnb │ │ │ ├── Item_144.xnb │ │ │ ├── Item_145.xnb │ │ │ ├── Item_146.xnb │ │ │ ├── Item_147.xnb │ │ │ ├── Item_148.xnb │ │ │ ├── Item_149.xnb │ │ │ ├── Item_15.xnb │ │ │ ├── Item_150.xnb │ │ │ ├── Item_151.xnb │ │ │ ├── Item_152.xnb │ │ │ ├── Item_153.xnb │ │ │ ├── Item_154.xnb │ │ │ ├── Item_155.xnb │ │ │ ├── Item_156.xnb │ │ │ ├── Item_157.xnb │ │ │ ├── Item_158.xnb │ │ │ ├── Item_159.xnb │ │ │ ├── Item_16.xnb │ │ │ ├── Item_160.xnb │ │ │ ├── Item_161.xnb │ │ │ ├── Item_162.xnb │ │ │ ├── Item_163.xnb │ │ │ ├── Item_164.xnb │ │ │ ├── Item_165.xnb │ │ │ ├── Item_166.xnb │ │ │ ├── Item_167.xnb │ │ │ ├── Item_168.xnb │ │ │ ├── Item_169.xnb │ │ │ ├── Item_17.xnb │ │ │ ├── Item_170.xnb │ │ │ ├── Item_171.xnb │ │ │ ├── Item_172.xnb │ │ │ ├── Item_173.xnb │ │ │ ├── Item_174.xnb │ │ │ ├── Item_175.xnb │ │ │ ├── Item_176.xnb │ │ │ ├── Item_177.xnb │ │ │ ├── Item_178.xnb │ │ │ ├── Item_179.xnb │ │ │ ├── Item_18.xnb │ │ │ ├── Item_180.xnb │ │ │ ├── Item_181.xnb │ │ │ ├── Item_182.xnb │ │ │ ├── Item_183.xnb │ │ │ ├── Item_184.xnb │ │ │ ├── Item_185.xnb │ │ │ ├── Item_186.xnb │ │ │ ├── Item_187.xnb │ │ │ ├── Item_188.xnb │ │ │ ├── Item_189.xnb │ │ │ ├── Item_19.xnb │ │ │ ├── Item_190.xnb │ │ │ ├── Item_191.xnb │ │ │ ├── Item_192.xnb │ │ │ ├── Item_193.xnb │ │ │ ├── Item_194.xnb │ │ │ ├── Item_195.xnb │ │ │ ├── Item_196.xnb │ │ │ ├── Item_197.xnb │ │ │ ├── Item_198.xnb │ │ │ ├── Item_199.xnb │ │ │ ├── Item_2.xnb │ │ │ ├── Item_20.xnb │ │ │ ├── Item_200.xnb │ │ │ ├── Item_201.xnb │ │ │ ├── Item_202.xnb │ │ │ ├── Item_203.xnb │ │ │ ├── Item_204.xnb │ │ │ ├── Item_205.xnb │ │ │ ├── Item_206.xnb │ │ │ ├── Item_207.xnb │ │ │ ├── Item_208.xnb │ │ │ ├── Item_209.xnb │ │ │ ├── Item_21.xnb │ │ │ ├── Item_210.xnb │ │ │ ├── Item_211.xnb │ │ │ ├── Item_212.xnb │ │ │ ├── Item_213.xnb │ │ │ ├── Item_214.xnb │ │ │ ├── Item_215.xnb │ │ │ ├── Item_216.xnb │ │ │ ├── Item_217.xnb │ │ │ ├── Item_218.xnb │ │ │ ├── Item_219.xnb │ │ │ ├── Item_22.xnb │ │ │ ├── Item_220.xnb │ │ │ ├── Item_221.xnb │ │ │ ├── Item_222.xnb │ │ │ ├── Item_223.xnb │ │ │ ├── Item_224.xnb │ │ │ ├── Item_225.xnb │ │ │ ├── Item_226.xnb │ │ │ ├── Item_227.xnb │ │ │ ├── Item_228.xnb │ │ │ ├── Item_229.xnb │ │ │ ├── Item_23.xnb │ │ │ ├── Item_230.xnb │ │ │ ├── Item_231.xnb │ │ │ ├── Item_232.xnb │ │ │ ├── Item_233.xnb │ │ │ ├── Item_234.xnb │ │ │ ├── Item_235.xnb │ │ │ ├── Item_24.xnb │ │ │ ├── Item_25.xnb │ │ │ ├── Item_26.xnb │ │ │ ├── Item_27.xnb │ │ │ ├── Item_28.xnb │ │ │ ├── Item_29.xnb │ │ │ ├── Item_3.xnb │ │ │ ├── Item_30.xnb │ │ │ ├── Item_31.xnb │ │ │ ├── Item_32.xnb │ │ │ ├── Item_33.xnb │ │ │ ├── Item_34.xnb │ │ │ ├── Item_35.xnb │ │ │ ├── Item_36.xnb │ │ │ ├── Item_37.xnb │ │ │ ├── Item_38.xnb │ │ │ ├── Item_39.xnb │ │ │ ├── Item_4.xnb │ │ │ ├── Item_40.xnb │ │ │ ├── Item_41.xnb │ │ │ ├── Item_42.xnb │ │ │ ├── Item_43.xnb │ │ │ ├── Item_44.xnb │ │ │ ├── Item_45.xnb │ │ │ ├── Item_46.xnb │ │ │ ├── Item_47.xnb │ │ │ ├── Item_48.xnb │ │ │ ├── Item_49.xnb │ │ │ ├── Item_5.xnb │ │ │ ├── Item_50.xnb │ │ │ ├── Item_51.xnb │ │ │ ├── Item_52.xnb │ │ │ ├── Item_53.xnb │ │ │ ├── Item_54.xnb │ │ │ ├── Item_55.xnb │ │ │ ├── Item_56.xnb │ │ │ ├── Item_57.xnb │ │ │ ├── Item_58.xnb │ │ │ ├── Item_59.xnb │ │ │ ├── Item_6.xnb │ │ │ ├── Item_60.xnb │ │ │ ├── Item_61.xnb │ │ │ ├── Item_62.xnb │ │ │ ├── Item_63.xnb │ │ │ ├── Item_64.xnb │ │ │ ├── Item_65.xnb │ │ │ ├── Item_66.xnb │ │ │ ├── Item_67.xnb │ │ │ ├── Item_68.xnb │ │ │ ├── Item_69.xnb │ │ │ ├── Item_7.xnb │ │ │ ├── Item_70.xnb │ │ │ ├── Item_71.xnb │ │ │ ├── Item_72.xnb │ │ │ ├── Item_73.xnb │ │ │ ├── Item_74.xnb │ │ │ ├── Item_75.xnb │ │ │ ├── Item_76.xnb │ │ │ ├── Item_77.xnb │ │ │ ├── Item_78.xnb │ │ │ ├── Item_79.xnb │ │ │ ├── Item_8.xnb │ │ │ ├── Item_80.xnb │ │ │ ├── Item_81.xnb │ │ │ ├── Item_82.xnb │ │ │ ├── Item_83.xnb │ │ │ ├── Item_84.xnb │ │ │ ├── Item_85.xnb │ │ │ ├── Item_86.xnb │ │ │ ├── Item_87.xnb │ │ │ ├── Item_88.xnb │ │ │ ├── Item_89.xnb │ │ │ ├── Item_9.xnb │ │ │ ├── Item_90.xnb │ │ │ ├── Item_91.xnb │ │ │ ├── Item_92.xnb │ │ │ ├── Item_93.xnb │ │ │ ├── Item_94.xnb │ │ │ ├── Item_95.xnb │ │ │ ├── Item_96.xnb │ │ │ ├── Item_97.xnb │ │ │ ├── Item_98.xnb │ │ │ ├── Item_99.xnb │ │ │ ├── Liquid_0.xnb │ │ │ ├── Liquid_1.xnb │ │ │ ├── Logo.xnb │ │ │ ├── Mana.xnb │ │ │ ├── Mana_Orb.xnb │ │ │ ├── Moon.xnb │ │ │ ├── NPC_0.xnb │ │ │ ├── NPC_1.xnb │ │ │ ├── NPC_10.xnb │ │ │ ├── NPC_11.xnb │ │ │ ├── NPC_12.xnb │ │ │ ├── NPC_13.xnb │ │ │ ├── NPC_14.xnb │ │ │ ├── NPC_15.xnb │ │ │ ├── NPC_16.xnb │ │ │ ├── NPC_17.xnb │ │ │ ├── NPC_18.xnb │ │ │ ├── NPC_19.xnb │ │ │ ├── NPC_2.xnb │ │ │ ├── NPC_20.xnb │ │ │ ├── NPC_21.xnb │ │ │ ├── NPC_22.xnb │ │ │ ├── NPC_23.xnb │ │ │ ├── NPC_24.xnb │ │ │ ├── NPC_25.xnb │ │ │ ├── NPC_26.xnb │ │ │ ├── NPC_27.xnb │ │ │ ├── NPC_28.xnb │ │ │ ├── NPC_29.xnb │ │ │ ├── NPC_3.xnb │ │ │ ├── NPC_30.xnb │ │ │ ├── NPC_31.xnb │ │ │ ├── NPC_32.xnb │ │ │ ├── NPC_33.xnb │ │ │ ├── NPC_34.xnb │ │ │ ├── NPC_35.xnb │ │ │ ├── NPC_36.xnb │ │ │ ├── NPC_37.xnb │ │ │ ├── NPC_38.xnb │ │ │ ├── NPC_39.xnb │ │ │ ├── NPC_4.xnb │ │ │ ├── NPC_40.xnb │ │ │ ├── NPC_41.xnb │ │ │ ├── NPC_42.xnb │ │ │ ├── NPC_43.xnb │ │ │ ├── NPC_5.xnb │ │ │ ├── NPC_6.xnb │ │ │ ├── NPC_7.xnb │ │ │ ├── NPC_8.xnb │ │ │ ├── NPC_9.xnb │ │ │ ├── Player_Eye_Whites.xnb │ │ │ ├── Player_Eyes.xnb │ │ │ ├── Player_Hair_1.xnb │ │ │ ├── Player_Hair_10.xnb │ │ │ ├── Player_Hair_11.xnb │ │ │ ├── Player_Hair_12.xnb │ │ │ ├── Player_Hair_13.xnb │ │ │ ├── Player_Hair_14.xnb │ │ │ ├── Player_Hair_15.xnb │ │ │ ├── Player_Hair_16.xnb │ │ │ ├── Player_Hair_17.xnb │ │ │ ├── Player_Hair_2.xnb │ │ │ ├── Player_Hair_3.xnb │ │ │ ├── Player_Hair_4.xnb │ │ │ ├── Player_Hair_5.xnb │ │ │ ├── Player_Hair_6.xnb │ │ │ ├── Player_Hair_7.xnb │ │ │ ├── Player_Hair_8.xnb │ │ │ ├── Player_Hair_9.xnb │ │ │ ├── Player_Hands.xnb │ │ │ ├── Player_Hands2.xnb │ │ │ ├── Player_Head.xnb │ │ │ ├── Player_Pants.xnb │ │ │ ├── Player_Shirt.xnb │ │ │ ├── Player_Shoes.xnb │ │ │ ├── Player_Undershirt.xnb │ │ │ ├── Player_Undershirt2.xnb │ │ │ ├── Projectile_0.xnb │ │ │ ├── Projectile_1.xnb │ │ │ ├── Projectile_10.xnb │ │ │ ├── Projectile_11.xnb │ │ │ ├── Projectile_12.xnb │ │ │ ├── Projectile_13.xnb │ │ │ ├── Projectile_14.xnb │ │ │ ├── Projectile_15.xnb │ │ │ ├── Projectile_16.xnb │ │ │ ├── Projectile_17.xnb │ │ │ ├── Projectile_18.xnb │ │ │ ├── Projectile_19.xnb │ │ │ ├── Projectile_2.xnb │ │ │ ├── Projectile_20.xnb │ │ │ ├── Projectile_21.xnb │ │ │ ├── Projectile_22.xnb │ │ │ ├── Projectile_23.xnb │ │ │ ├── Projectile_24.xnb │ │ │ ├── Projectile_25.xnb │ │ │ ├── Projectile_26.xnb │ │ │ ├── Projectile_27.xnb │ │ │ ├── Projectile_28.xnb │ │ │ ├── Projectile_29.xnb │ │ │ ├── Projectile_3.xnb │ │ │ ├── Projectile_30.xnb │ │ │ ├── Projectile_31.xnb │ │ │ ├── Projectile_32.xnb │ │ │ ├── Projectile_33.xnb │ │ │ ├── Projectile_34.xnb │ │ │ ├── Projectile_35.xnb │ │ │ ├── Projectile_36.xnb │ │ │ ├── Projectile_37.xnb │ │ │ ├── Projectile_4.xnb │ │ │ ├── Projectile_5.xnb │ │ │ ├── Projectile_6.xnb │ │ │ ├── Projectile_7.xnb │ │ │ ├── Projectile_8.xnb │ │ │ ├── Projectile_9.xnb │ │ │ ├── Shroom_Tops.xnb │ │ │ ├── Star_0.xnb │ │ │ ├── Star_1.xnb │ │ │ ├── Star_2.xnb │ │ │ ├── Star_3.xnb │ │ │ ├── Star_4.xnb │ │ │ ├── Sun.xnb │ │ │ ├── Team.xnb │ │ │ ├── Text_Back.xnb │ │ │ ├── Tiles_0.xnb │ │ │ ├── Tiles_1.xnb │ │ │ ├── Tiles_10.xnb │ │ │ ├── Tiles_11.xnb │ │ │ ├── Tiles_12.xnb │ │ │ ├── Tiles_13.xnb │ │ │ ├── Tiles_14.xnb │ │ │ ├── Tiles_15.xnb │ │ │ ├── Tiles_16.xnb │ │ │ ├── Tiles_17.xnb │ │ │ ├── Tiles_18.xnb │ │ │ ├── Tiles_19.xnb │ │ │ ├── Tiles_2.xnb │ │ │ ├── Tiles_20.xnb │ │ │ ├── Tiles_21.xnb │ │ │ ├── Tiles_22.xnb │ │ │ ├── Tiles_23.xnb │ │ │ ├── Tiles_24.xnb │ │ │ ├── Tiles_25.xnb │ │ │ ├── Tiles_26.xnb │ │ │ ├── Tiles_27.xnb │ │ │ ├── Tiles_28.xnb │ │ │ ├── Tiles_29.xnb │ │ │ ├── Tiles_3.xnb │ │ │ ├── Tiles_30.xnb │ │ │ ├── Tiles_31.xnb │ │ │ ├── Tiles_32.xnb │ │ │ ├── Tiles_33.xnb │ │ │ ├── Tiles_34.xnb │ │ │ ├── Tiles_35.xnb │ │ │ ├── Tiles_36.xnb │ │ │ ├── Tiles_37.xnb │ │ │ ├── Tiles_38.xnb │ │ │ ├── Tiles_39.xnb │ │ │ ├── Tiles_4.xnb │ │ │ ├── Tiles_40.xnb │ │ │ ├── Tiles_41.xnb │ │ │ ├── Tiles_42.xnb │ │ │ ├── Tiles_43.xnb │ │ │ ├── Tiles_44.xnb │ │ │ ├── Tiles_45.xnb │ │ │ ├── Tiles_46.xnb │ │ │ ├── Tiles_47.xnb │ │ │ ├── Tiles_48.xnb │ │ │ ├── Tiles_49.xnb │ │ │ ├── Tiles_5.xnb │ │ │ ├── Tiles_50.xnb │ │ │ ├── Tiles_51.xnb │ │ │ ├── Tiles_52.xnb │ │ │ ├── Tiles_53.xnb │ │ │ ├── Tiles_54.xnb │ │ │ ├── Tiles_55.xnb │ │ │ ├── Tiles_56.xnb │ │ │ ├── Tiles_57.xnb │ │ │ ├── Tiles_58.xnb │ │ │ ├── Tiles_59.xnb │ │ │ ├── Tiles_6.xnb │ │ │ ├── Tiles_60.xnb │ │ │ ├── Tiles_61.xnb │ │ │ ├── Tiles_62.xnb │ │ │ ├── Tiles_63.xnb │ │ │ ├── Tiles_64.xnb │ │ │ ├── Tiles_65.xnb │ │ │ ├── Tiles_66.xnb │ │ │ ├── Tiles_67.xnb │ │ │ ├── Tiles_68.xnb │ │ │ ├── Tiles_69.xnb │ │ │ ├── Tiles_7.xnb │ │ │ ├── Tiles_70.xnb │ │ │ ├── Tiles_71.xnb │ │ │ ├── Tiles_72.xnb │ │ │ ├── Tiles_73.xnb │ │ │ ├── Tiles_74.xnb │ │ │ ├── Tiles_75.xnb │ │ │ ├── Tiles_76.xnb │ │ │ ├── Tiles_77.xnb │ │ │ ├── Tiles_78.xnb │ │ │ ├── Tiles_79.xnb │ │ │ ├── Tiles_8.xnb │ │ │ ├── Tiles_9.xnb │ │ │ ├── Tree_Branches.xnb │ │ │ ├── Tree_Tops.xnb │ │ │ ├── Wall_1.xnb │ │ │ ├── Wall_10.xnb │ │ │ ├── Wall_11.xnb │ │ │ ├── Wall_12.xnb │ │ │ ├── Wall_13.xnb │ │ │ ├── Wall_2.xnb │ │ │ ├── Wall_3.xnb │ │ │ ├── Wall_4.xnb │ │ │ ├── Wall_5.xnb │ │ │ ├── Wall_6.xnb │ │ │ ├── Wall_7.xnb │ │ │ ├── Wall_8.xnb │ │ │ ├── Wall_9.xnb │ │ │ ├── fade-out.xnb │ │ │ ├── ra-logo.xnb │ │ │ ├── re-logo.xnb │ │ │ └── splash.xnb │ │ ├── Sound Bank.xsb │ │ ├── Sounds │ │ │ ├── Coins.xnb │ │ │ ├── Dig_0.xnb │ │ │ ├── Dig_1.xnb │ │ │ ├── Dig_2.xnb │ │ │ ├── Door_Closed.xnb │ │ │ ├── Door_Opened.xnb │ │ │ ├── Double_Jump.xnb │ │ │ ├── Female_Hit_0.xnb │ │ │ ├── Female_Hit_1.xnb │ │ │ ├── Female_Hit_2.xnb │ │ │ ├── Grab.xnb │ │ │ ├── Grass.xnb │ │ │ ├── Item_1.xnb │ │ │ ├── Item_10.xnb │ │ │ ├── Item_11.xnb │ │ │ ├── Item_12.xnb │ │ │ ├── Item_13.xnb │ │ │ ├── Item_14.xnb │ │ │ ├── Item_15.xnb │ │ │ ├── Item_16.xnb │ │ │ ├── Item_2.xnb │ │ │ ├── Item_3.xnb │ │ │ ├── Item_4.xnb │ │ │ ├── Item_5.xnb │ │ │ ├── Item_6.xnb │ │ │ ├── Item_7.xnb │ │ │ ├── Item_8.xnb │ │ │ ├── Item_9.xnb │ │ │ ├── Menu_Close.xnb │ │ │ ├── Menu_Open.xnb │ │ │ ├── Menu_Tick.xnb │ │ │ ├── NPC_Hit_1.xnb │ │ │ ├── NPC_Hit_2.xnb │ │ │ ├── NPC_Hit_3.xnb │ │ │ ├── NPC_Killed_1.xnb │ │ │ ├── NPC_Killed_2.xnb │ │ │ ├── NPC_Killed_3.xnb │ │ │ ├── Player_Hit_0.xnb │ │ │ ├── Player_Hit_1.xnb │ │ │ ├── Player_Hit_2.xnb │ │ │ ├── Player_Killed.xnb │ │ │ ├── Roar_0.xnb │ │ │ ├── Roar_1.xnb │ │ │ ├── Run.xnb │ │ │ ├── Shatter.xnb │ │ │ ├── Splash_0.xnb │ │ │ ├── Splash_1.xnb │ │ │ ├── Tink_0.xnb │ │ │ ├── Tink_1.xnb │ │ │ ├── Tink_2.xnb │ │ │ ├── Zombie_0.xnb │ │ │ ├── Zombie_1.xnb │ │ │ └── Zombie_2.xnb │ │ ├── TerrariaMusic.xgs │ │ └── Wave Bank.xwb │ ├── Terraria.exe │ ├── Terraria.pdb │ ├── Terraria.vshost.exe │ ├── Terraria.vshost.exe.manifest │ └── steam_api.dll └── Release │ ├── Terraria.exe │ └── Terraria.pdb └── obj └── x86 ├── Debug ├── DesignTimeResolveAssemblyReferencesInput.cache ├── ResolveAssemblyReference.cache ├── Terraria.csproj.FileListAbsolute.txt ├── Terraria.exe └── Terraria.pdb └── Release ├── DesignTimeResolveAssemblyReferencesInput.cache ├── Terraria.csproj.FileListAbsolute.txt ├── Terraria.exe └── Terraria.pdb /AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // Assembly Terraria, Version 1.0.0.0 2 | 3 | [assembly: System.Reflection.AssemblyVersion("1.0.0.0")] 4 | [assembly: System.Reflection.AssemblyCompany("Teh Gamez")] 5 | [assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)] 6 | //[assembly: System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName=".NET Framework 4 Client Profile")] 7 | [assembly: System.Reflection.AssemblyTitle("Terraria")] 8 | [assembly: System.Reflection.AssemblyProduct("Terraria")] 9 | [assembly: System.Reflection.AssemblyDescription("")] 10 | [assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true)] 11 | [assembly: System.Reflection.AssemblyCopyright("Copyright \x00a9 Teh Gamez 2011")] 12 | [assembly: System.Reflection.AssemblyTrademark("")] 13 | [assembly: System.Runtime.InteropServices.ComVisible(false)] 14 | [assembly: System.Runtime.InteropServices.Guid("f571b16a-2c9b-44ab-b115-7c762c9e4e7e")] 15 | [assembly: System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] 16 | 17 | -------------------------------------------------------------------------------- /Global.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Microsoft.Xna.Framework.RuntimeProfile: -------------------------------------------------------------------------------- 1 | Windows.v4.0.Reach 2 | -------------------------------------------------------------------------------- /Terraria.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | local 5 | 7.10.377 6 | 2.0 7 | {108C8016-FBFA-4D80-A5C6-0688A6A0F0E3} 8 | Debug 9 | Terraria 10 | WinExe 11 | v4.0 12 | 13 | 14 | x86 15 | true 16 | full 17 | false 18 | bin\Debug\ 19 | DEBUG;TRACE 20 | prompt 21 | 4 22 | 23 | 24 | x86 25 | pdbonly 26 | true 27 | bin\Release\ 28 | TRACE 29 | prompt 30 | 4 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /Terraria.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual C# Express 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Terraria", "Terraria.csproj", "{108C8016-FBFA-4D80-A5C6-0688A6A0F0E3}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {108C8016-FBFA-4D80-A5C6-0688A6A0F0E3}.Debug|x86.ActiveCfg = Debug|x86 13 | {108C8016-FBFA-4D80-A5C6-0688A6A0F0E3}.Debug|x86.Build.0 = Debug|x86 14 | {108C8016-FBFA-4D80-A5C6-0688A6A0F0E3}.Release|x86.ActiveCfg = Release|x86 15 | {108C8016-FBFA-4D80-A5C6-0688A6A0F0E3}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /Terraria.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/Terraria.suo -------------------------------------------------------------------------------- /Terraria/ChatLine.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using Microsoft.Xna.Framework; 4 | using System; 5 | 6 | public class ChatLine 7 | { 8 | public Color color = Color.White; 9 | public int showTime; 10 | public string text = ""; 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /Terraria/ClientSock.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | using System.Net.Sockets; 5 | 6 | public class ClientSock 7 | { 8 | public bool active; 9 | public bool locked; 10 | public NetworkStream networkStream; 11 | public byte[] readBuffer; 12 | public int state; 13 | public int statusCount; 14 | public int statusMax; 15 | public string statusText; 16 | public TcpClient tcpClient = new TcpClient(); 17 | public int timeOut; 18 | public byte[] writeBuffer; 19 | 20 | public void ClientReadCallBack(IAsyncResult ar) 21 | { 22 | int streamLength = 0; 23 | if (!Netplay.disconnect) 24 | { 25 | streamLength = this.networkStream.EndRead(ar); 26 | if (streamLength == 0) 27 | { 28 | Netplay.disconnect = true; 29 | Main.statusText = "Lost connection"; 30 | } 31 | else if (Main.ignoreErrors) 32 | { 33 | try 34 | { 35 | NetMessage.RecieveBytes(this.readBuffer, streamLength, 9); 36 | } 37 | catch 38 | { 39 | } 40 | } 41 | else 42 | { 43 | NetMessage.RecieveBytes(this.readBuffer, streamLength, 9); 44 | } 45 | } 46 | this.locked = false; 47 | } 48 | 49 | public void ClientWriteCallBack(IAsyncResult ar) 50 | { 51 | messageBuffer buffer1 = NetMessage.buffer[9]; 52 | buffer1.spamCount--; 53 | } 54 | } 55 | } 56 | 57 | -------------------------------------------------------------------------------- /Terraria/LiquidBuffer.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | 5 | public class LiquidBuffer 6 | { 7 | public const int maxLiquidBuffer = 0x2710; 8 | public static int numLiquidBuffer; 9 | public int x; 10 | public int y; 11 | 12 | public static void AddBuffer(int x, int y) 13 | { 14 | if ((numLiquidBuffer != 0x270f) && !Main.tile[x, y].checkingLiquid) 15 | { 16 | Main.tile[x, y].checkingLiquid = true; 17 | Main.liquidBuffer[numLiquidBuffer].x = x; 18 | Main.liquidBuffer[numLiquidBuffer].y = y; 19 | numLiquidBuffer++; 20 | } 21 | } 22 | 23 | public static void DelBuffer(int l) 24 | { 25 | numLiquidBuffer--; 26 | Main.liquidBuffer[l].x = Main.liquidBuffer[numLiquidBuffer].x; 27 | Main.liquidBuffer[l].y = Main.liquidBuffer[numLiquidBuffer].y; 28 | } 29 | } 30 | } 31 | 32 | -------------------------------------------------------------------------------- /Terraria/Program.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | 5 | internal static class Program 6 | { 7 | private static void Main(string[] args) 8 | { 9 | using (Terraria.Main main = new Terraria.Main()) 10 | { 11 | //Steam.Init(); 12 | //if (Steam.SteamInit) 13 | //{ 14 | main.Run(); 15 | //} 16 | } 17 | } 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Terraria/Sign.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | 5 | public class Sign 6 | { 7 | public const int maxSigns = 0x3e8; 8 | public string text; 9 | public int x; 10 | public int y; 11 | 12 | public static void KillSign(int x, int y) 13 | { 14 | for (int i = 0; i < 0x3e8; i++) 15 | { 16 | if (((Main.sign[i] != null) && (Main.sign[i].x == x)) && (Main.sign[i].y == y)) 17 | { 18 | Main.sign[i] = null; 19 | } 20 | } 21 | } 22 | 23 | public static int ReadSign(int i, int j) 24 | { 25 | int num = Main.tile[i, j].frameX / 0x12; 26 | int num2 = Main.tile[i, j].frameY / 0x12; 27 | while (num > 1) 28 | { 29 | num -= 2; 30 | } 31 | int x = i - num; 32 | int y = j - num2; 33 | if (Main.tile[x, y].type != 0x37) 34 | { 35 | KillSign(x, y); 36 | return -1; 37 | } 38 | int num5 = -1; 39 | for (int k = 0; k < 0x3e8; k++) 40 | { 41 | if (((Main.sign[k] != null) && (Main.sign[k].x == x)) && (Main.sign[k].y == y)) 42 | { 43 | num5 = k; 44 | break; 45 | } 46 | } 47 | if (num5 < 0) 48 | { 49 | for (int m = 0; m < 0x3e8; m++) 50 | { 51 | if (Main.sign[m] == null) 52 | { 53 | num5 = m; 54 | Main.sign[m] = new Sign(); 55 | Main.sign[m].x = x; 56 | Main.sign[m].y = y; 57 | Main.sign[m].text = ""; 58 | return num5; 59 | } 60 | } 61 | } 62 | return num5; 63 | } 64 | 65 | public static void TextSign(int i, string text) 66 | { 67 | if (((Main.tile[Main.sign[i].x, Main.sign[i].y] == null) || !Main.tile[Main.sign[i].x, Main.sign[i].y].active) || (Main.tile[Main.sign[i].x, Main.sign[i].y].type != 0x37)) 68 | { 69 | Main.sign[i] = null; 70 | } 71 | else 72 | { 73 | Main.sign[i].text = text; 74 | } 75 | } 76 | } 77 | } 78 | 79 | -------------------------------------------------------------------------------- /Terraria/Star.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using Microsoft.Xna.Framework; 4 | using System; 5 | 6 | public class Star 7 | { 8 | public Vector2 position; 9 | public float rotation; 10 | public float rotationSpeed; 11 | public float scale; 12 | public float twinkle; 13 | public float twinkleSpeed; 14 | public int type; 15 | 16 | public static void SpawnStars() 17 | { 18 | Main.numStars = Main.rand.Next(0x41, 130); 19 | Main.numStars = 130; 20 | for (int i = 0; i < Main.numStars; i++) 21 | { 22 | Main.star[i] = new Star(); 23 | Main.star[i].position.X = Main.rand.Next(-12, Main.screenWidth + 1); 24 | Main.star[i].position.Y = Main.rand.Next(-12, (int) (Main.screenHeight * 1.35)); 25 | Main.star[i].rotation = Main.rand.Next(0x274) * 0.01f; 26 | Main.star[i].scale = Main.rand.Next(50, 120) * 0.01f; 27 | Main.star[i].type = Main.rand.Next(0, 5); 28 | Main.star[i].twinkle = Main.rand.Next(0x65) * 0.01f; 29 | Main.star[i].twinkleSpeed = Main.rand.Next(40, 100) * 0.0001f; 30 | if (Main.rand.Next(2) == 0) 31 | { 32 | Star star1 = Main.star[i]; 33 | star1.twinkleSpeed *= -1f; 34 | } 35 | Main.star[i].rotationSpeed = Main.rand.Next(10, 40) * 0.0001f; 36 | if (Main.rand.Next(2) == 0) 37 | { 38 | Star star2 = Main.star[i]; 39 | star2.rotationSpeed *= -1f; 40 | } 41 | } 42 | } 43 | 44 | public static void UpdateStars() 45 | { 46 | for (int i = 0; i < Main.numStars; i++) 47 | { 48 | Star star1 = Main.star[i]; 49 | star1.twinkle += Main.star[i].twinkleSpeed; 50 | if (Main.star[i].twinkle > 1f) 51 | { 52 | Main.star[i].twinkle = 1f; 53 | Star star2 = Main.star[i]; 54 | star2.twinkleSpeed *= -1f; 55 | } 56 | else if (Main.star[i].twinkle < 0.5) 57 | { 58 | Main.star[i].twinkle = 0.5f; 59 | Star star3 = Main.star[i]; 60 | star3.twinkleSpeed *= -1f; 61 | } 62 | Star star4 = Main.star[i]; 63 | star4.rotation += Main.star[i].rotationSpeed; 64 | if (Main.star[i].rotation > 6.28) 65 | { 66 | Star star5 = Main.star[i]; 67 | star5.rotation -= 6.28f; 68 | } 69 | if (Main.star[i].rotation < 0f) 70 | { 71 | Star star6 = Main.star[i]; 72 | star6.rotation += 6.28f; 73 | } 74 | } 75 | } 76 | } 77 | } 78 | 79 | -------------------------------------------------------------------------------- /Terraria/Steam.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | using System.Runtime.InteropServices; 5 | 6 | public class Steam 7 | { 8 | public static bool SteamInit; 9 | 10 | public static void Init() 11 | { 12 | SteamInit = SteamAPI_Init(); 13 | } 14 | 15 | public static void Kill() 16 | { 17 | SteamAPI_Shutdown(); 18 | } 19 | 20 | [DllImport("steam_api.dll")] 21 | private static extern bool SteamAPI_Init(); 22 | [DllImport("steam_api.dll")] 23 | private static extern bool SteamAPI_Shutdown(); 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /Terraria/Tile.cs: -------------------------------------------------------------------------------- 1 | namespace Terraria 2 | { 3 | using System; 4 | 5 | public class Tile 6 | { 7 | public bool active; 8 | public bool checkingLiquid; 9 | public byte frameNumber; 10 | public short frameX; 11 | public short frameY; 12 | public bool lava; 13 | public bool lighted; 14 | public byte liquid; 15 | public bool skipLiquid; 16 | public byte type; 17 | public byte wall; 18 | public byte wallFrameNumber; 19 | public byte wallFrameX; 20 | public byte wallFrameY; 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /bin/Debug/Content/Fonts/Combat_Text.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Fonts/Combat_Text.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Fonts/Death_Text.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Fonts/Death_Text.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Fonts/Item_Stack.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Fonts/Item_Stack.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Fonts/Mouse_Text.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Fonts/Mouse_Text.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Fonts/Title_Font.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Fonts/Title_Font.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Arm_Bone.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Arm_Bone.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Arm_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Arm_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Body_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Body_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Head_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Head_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Armor_Legs_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Armor_Legs_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Background_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Background_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Black_Tile.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Black_Tile.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Bubble.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Bubble.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chain6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chain6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chat.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chat.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chat2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chat2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Chat_Back.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Chat_Back.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Cloud_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Cloud_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Cloud_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Cloud_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Cloud_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Cloud_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Cloud_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Cloud_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/CoolDown.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/CoolDown.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Cursor.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Cursor.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Dust.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Dust.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_18.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_18.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_19.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_19.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_20.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_21.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_21.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_22.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_23.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_23.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_24.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_25.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_26.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_26.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_27.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_27.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_28.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_28.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_29.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_29.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_30.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_31.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_31.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_32.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_32.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_33.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_33.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_34.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_34.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_35.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_35.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_36.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_36.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_37.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_37.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_38.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_38.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_39.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_39.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_40.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_40.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_41.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_41.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_42.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_42.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_43.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_43.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_44.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_44.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_45.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_45.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_46.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_46.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_47.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_47.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_48.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_48.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_49.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_49.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_50.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_50.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_51.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_51.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_52.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_52.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_53.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_53.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_54.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_54.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_55.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_55.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_56.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_56.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_57.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_57.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_58.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_58.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_59.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_59.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_60.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_60.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_61.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_61.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_62.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_62.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_63.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_63.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_64.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_64.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_65.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_65.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_66.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_66.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_67.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_67.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_68.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_68.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_69.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_69.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_70.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_70.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_71.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_71.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_72.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_72.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Gore_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Gore_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Heart.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Heart.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Inventory_Back.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Inventory_Back.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_100.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_100.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_101.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_101.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_102.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_102.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_103.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_103.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_104.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_104.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_105.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_105.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_106.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_106.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_107.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_107.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_108.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_108.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_109.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_109.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_110.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_110.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_111.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_111.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_112.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_112.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_113.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_113.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_114.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_114.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_115.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_115.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_116.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_116.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_117.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_117.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_118.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_118.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_119.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_119.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_120.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_120.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_121.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_121.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_122.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_122.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_123.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_123.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_124.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_124.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_125.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_125.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_126.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_126.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_127.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_127.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_128.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_128.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_129.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_129.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_130.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_130.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_131.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_131.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_132.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_132.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_133.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_133.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_134.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_134.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_135.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_135.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_136.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_136.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_137.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_137.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_138.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_138.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_139.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_139.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_140.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_140.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_141.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_141.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_142.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_142.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_143.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_143.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_144.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_144.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_145.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_145.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_146.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_146.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_147.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_147.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_148.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_148.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_149.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_149.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_150.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_150.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_151.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_151.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_152.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_152.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_153.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_153.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_154.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_154.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_155.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_155.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_156.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_156.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_157.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_157.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_158.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_158.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_159.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_159.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_160.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_160.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_161.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_161.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_162.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_162.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_163.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_163.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_164.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_164.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_165.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_165.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_166.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_166.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_167.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_167.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_168.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_168.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_169.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_169.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_170.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_170.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_171.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_171.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_172.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_172.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_173.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_173.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_174.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_174.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_175.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_175.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_176.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_176.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_177.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_177.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_178.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_178.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_179.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_179.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_18.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_18.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_180.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_180.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_181.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_181.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_182.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_182.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_183.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_183.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_184.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_184.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_185.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_185.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_186.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_186.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_187.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_187.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_188.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_188.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_189.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_189.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_19.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_19.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_190.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_190.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_191.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_191.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_192.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_192.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_193.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_193.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_194.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_194.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_195.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_195.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_196.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_196.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_197.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_197.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_198.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_198.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_199.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_199.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_20.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_200.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_200.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_201.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_201.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_202.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_202.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_203.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_203.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_204.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_204.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_205.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_205.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_206.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_206.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_207.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_207.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_208.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_208.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_209.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_209.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_21.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_21.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_210.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_210.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_211.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_211.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_212.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_212.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_213.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_213.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_214.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_214.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_215.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_215.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_216.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_216.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_217.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_217.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_218.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_218.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_219.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_219.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_22.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_220.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_220.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_221.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_221.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_222.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_222.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_223.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_223.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_224.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_224.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_225.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_225.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_226.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_226.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_227.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_227.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_228.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_228.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_229.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_229.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_23.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_23.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_230.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_230.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_231.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_231.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_232.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_232.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_233.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_233.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_234.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_234.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_235.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_235.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_24.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_25.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_26.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_26.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_27.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_27.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_28.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_28.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_29.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_29.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_30.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_31.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_31.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_32.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_32.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_33.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_33.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_34.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_34.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_35.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_35.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_36.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_36.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_37.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_37.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_38.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_38.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_39.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_39.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_40.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_40.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_41.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_41.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_42.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_42.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_43.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_43.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_44.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_44.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_45.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_45.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_46.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_46.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_47.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_47.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_48.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_48.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_49.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_49.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_50.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_50.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_51.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_51.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_52.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_52.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_53.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_53.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_54.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_54.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_55.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_55.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_56.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_56.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_57.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_57.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_58.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_58.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_59.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_59.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_60.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_60.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_61.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_61.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_62.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_62.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_63.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_63.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_64.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_64.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_65.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_65.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_66.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_66.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_67.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_67.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_68.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_68.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_69.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_69.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_70.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_70.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_71.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_71.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_72.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_72.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_73.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_73.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_74.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_74.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_75.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_75.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_76.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_76.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_77.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_77.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_78.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_78.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_79.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_79.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_80.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_80.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_81.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_81.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_82.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_82.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_83.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_83.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_84.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_84.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_85.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_85.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_86.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_86.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_87.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_87.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_88.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_88.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_89.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_89.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_90.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_90.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_91.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_91.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_92.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_92.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_93.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_93.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_94.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_94.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_95.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_95.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_96.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_96.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_97.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_97.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_98.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_98.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Item_99.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Item_99.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Liquid_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Liquid_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Liquid_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Liquid_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Logo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Logo.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Mana.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Mana.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Mana_Orb.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Mana_Orb.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Moon.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Moon.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_18.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_18.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_19.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_19.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_20.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_21.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_21.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_22.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_23.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_23.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_24.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_25.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_26.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_26.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_27.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_27.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_28.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_28.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_29.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_29.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_30.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_31.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_31.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_32.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_32.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_33.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_33.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_34.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_34.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_35.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_35.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_36.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_36.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_37.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_37.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_38.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_38.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_39.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_39.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_40.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_40.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_41.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_41.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_42.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_42.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_43.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_43.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/NPC_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/NPC_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Eye_Whites.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Eye_Whites.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Eyes.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Eyes.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hair_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hair_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hands.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hands.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Hands2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Hands2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Head.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Head.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Pants.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Pants.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Shirt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Shirt.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Shoes.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Shoes.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Undershirt.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Undershirt.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Player_Undershirt2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Player_Undershirt2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_18.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_18.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_19.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_19.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_20.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_21.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_21.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_22.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_23.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_23.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_24.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_25.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_26.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_26.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_27.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_27.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_28.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_28.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_29.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_29.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_30.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_31.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_31.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_32.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_32.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_33.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_33.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_34.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_34.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_35.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_35.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_36.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_36.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_37.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_37.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Projectile_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Projectile_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Shroom_Tops.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Shroom_Tops.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Star_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Star_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Star_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Star_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Star_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Star_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Star_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Star_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Star_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Star_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Sun.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Sun.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Team.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Team.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Text_Back.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Text_Back.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_17.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_17.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_18.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_18.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_19.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_19.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_20.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_20.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_21.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_21.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_22.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_22.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_23.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_23.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_24.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_24.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_25.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_25.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_26.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_26.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_27.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_27.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_28.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_28.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_29.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_29.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_30.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_30.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_31.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_31.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_32.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_32.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_33.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_33.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_34.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_34.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_35.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_35.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_36.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_36.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_37.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_37.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_38.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_38.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_39.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_39.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_40.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_40.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_41.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_41.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_42.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_42.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_43.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_43.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_44.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_44.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_45.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_45.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_46.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_46.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_47.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_47.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_48.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_48.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_49.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_49.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_50.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_50.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_51.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_51.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_52.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_52.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_53.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_53.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_54.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_54.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_55.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_55.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_56.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_56.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_57.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_57.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_58.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_58.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_59.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_59.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_60.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_60.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_61.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_61.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_62.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_62.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_63.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_63.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_64.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_64.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_65.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_65.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_66.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_66.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_67.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_67.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_68.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_68.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_69.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_69.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_70.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_70.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_71.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_71.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_72.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_72.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_73.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_73.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_74.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_74.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_75.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_75.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_76.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_76.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_77.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_77.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_78.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_78.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_79.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_79.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tiles_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tiles_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tree_Branches.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tree_Branches.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Tree_Tops.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Tree_Tops.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/Wall_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/Wall_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/fade-out.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/fade-out.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/ra-logo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/ra-logo.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/re-logo.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/re-logo.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Images/splash.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Images/splash.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sound Bank.xsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sound Bank.xsb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Coins.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Coins.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Dig_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Dig_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Dig_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Dig_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Dig_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Dig_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Door_Closed.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Door_Closed.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Door_Opened.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Door_Opened.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Double_Jump.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Double_Jump.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Female_Hit_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Female_Hit_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Female_Hit_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Female_Hit_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Female_Hit_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Female_Hit_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Grab.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Grab.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Grass.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Grass.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_10.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_10.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_11.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_11.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_12.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_12.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_13.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_13.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_14.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_14.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_15.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_15.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_16.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_16.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_4.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_4.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_5.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_5.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_6.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_6.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_7.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_7.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_8.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_8.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Item_9.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Item_9.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Menu_Close.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Menu_Close.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Menu_Open.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Menu_Open.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Menu_Tick.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Menu_Tick.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Hit_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Hit_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Hit_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Hit_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Hit_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Hit_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Killed_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Killed_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Killed_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Killed_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/NPC_Killed_3.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/NPC_Killed_3.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Player_Hit_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Player_Hit_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Player_Hit_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Player_Hit_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Player_Hit_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Player_Hit_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Player_Killed.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Player_Killed.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Roar_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Roar_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Roar_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Roar_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Run.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Run.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Shatter.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Shatter.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Splash_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Splash_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Splash_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Splash_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Tink_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Tink_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Tink_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Tink_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Tink_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Tink_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Zombie_0.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Zombie_0.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Zombie_1.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Zombie_1.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/Sounds/Zombie_2.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Sounds/Zombie_2.xnb -------------------------------------------------------------------------------- /bin/Debug/Content/TerrariaMusic.xgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/TerrariaMusic.xgs -------------------------------------------------------------------------------- /bin/Debug/Content/Wave Bank.xwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Content/Wave Bank.xwb -------------------------------------------------------------------------------- /bin/Debug/Terraria.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Terraria.exe -------------------------------------------------------------------------------- /bin/Debug/Terraria.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Terraria.pdb -------------------------------------------------------------------------------- /bin/Debug/Terraria.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/Terraria.vshost.exe -------------------------------------------------------------------------------- /bin/Debug/Terraria.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bin/Debug/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Debug/steam_api.dll -------------------------------------------------------------------------------- /bin/Release/Terraria.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Release/Terraria.exe -------------------------------------------------------------------------------- /bin/Release/Terraria.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/bin/Release/Terraria.pdb -------------------------------------------------------------------------------- /obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/x86/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /obj/x86/Debug/Terraria.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Terraria\obj\x86\Debug\ResolveAssemblyReference.cache 2 | D:\Terraria\bin\Debug\Terraria.exe 3 | D:\Terraria\bin\Debug\Terraria.pdb 4 | D:\Terraria\obj\x86\Debug\Terraria.exe 5 | D:\Terraria\obj\x86\Debug\Terraria.pdb 6 | -------------------------------------------------------------------------------- /obj/x86/Debug/Terraria.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Debug/Terraria.exe -------------------------------------------------------------------------------- /obj/x86/Debug/Terraria.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Debug/Terraria.pdb -------------------------------------------------------------------------------- /obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/x86/Release/Terraria.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Terraria\bin\Release\Terraria.exe 2 | D:\Terraria\bin\Release\Terraria.pdb 3 | D:\Terraria\obj\x86\Release\ResolveAssemblyReference.cache 4 | D:\Terraria\obj\x86\Release\Terraria.exe 5 | D:\Terraria\obj\x86\Release\Terraria.pdb 6 | -------------------------------------------------------------------------------- /obj/x86/Release/Terraria.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Release/Terraria.exe -------------------------------------------------------------------------------- /obj/x86/Release/Terraria.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deathly/TerrariaAPI/266be39ad32fd0ab4fafc1b64142d4778a7d8b14/obj/x86/Release/Terraria.pdb --------------------------------------------------------------------------------