From ad70108cdf7347fb47dbc834d53e313d24b1ff2a Mon Sep 17 00:00:00 2001 From: Tornado Tech <54727692+Tornado-Technology@users.noreply.github.com> Date: Tue, 17 Dec 2024 21:34:39 +1000 Subject: [PATCH] Separated rods to parts --- .../Objects/Fishing/FishingRods/grips.yml | 96 ++++++++++++++++++ .../Objects/Fishing/FishingRods/shafts.yml | 58 +++++++++++ .../Entities/Objects/Fishing/fishingRods.yml | 15 --- .../_CP14/ModularCraft/FishingRods/shafts.yml | 45 ++++++++ .../_CP14/ModularCraft/FishingRods/slots.yml | 5 + .../Objects/Fishing/Grips/copper.rsi/icon.png | Bin 0 -> 175 bytes .../Fishing/Grips/copper.rsi/inhand-left.png | Bin 0 -> 204 bytes .../Fishing/Grips/copper.rsi/inhand-right.png | Bin 0 -> 232 bytes .../Fishing/Grips/copper.rsi/meta.json | 22 ++++ .../Objects/Fishing/Grips/gold.rsi/icon.png | Bin 0 -> 171 bytes .../Fishing/Grips/gold.rsi/inhand-left.png | Bin 0 -> 207 bytes .../Fishing/Grips/gold.rsi/inhand-right.png | Bin 0 -> 219 bytes .../Objects/Fishing/Grips/gold.rsi/meta.json | 22 ++++ .../Objects/Fishing/Grips/iron.rsi/icon.png | Bin 0 -> 217 bytes .../Fishing/Grips/iron.rsi/inhand-left.png | Bin 0 -> 226 bytes .../Fishing/Grips/iron.rsi/inhand-right.png | Bin 0 -> 227 bytes .../Objects/Fishing/Grips/iron.rsi/meta.json | 22 ++++ .../Objects/Fishing/Grips/wooden.rsi/icon.png | Bin 0 -> 218 bytes .../Fishing/Grips/wooden.rsi/inhand-left.png | Bin 0 -> 231 bytes .../Fishing/Grips/wooden.rsi/inhand-right.png | Bin 0 -> 236 bytes .../Fishing/Grips/wooden.rsi/meta.json | 22 ++++ .../Fishing/Shafts/copper.rsi/icon.png | Bin 0 -> 329 bytes .../Fishing/Shafts/copper.rsi/inhand-left.png | Bin 0 -> 706 bytes .../Shafts/copper.rsi/inhand-right.png | Bin 0 -> 650 bytes .../Fishing/Shafts/copper.rsi/meta.json | 22 ++++ .../Objects/Fishing/Shafts/gold.rsi/icon.png | Bin 0 -> 329 bytes .../Fishing/Shafts/gold.rsi/inhand-left.png | Bin 0 -> 632 bytes .../Fishing/Shafts/gold.rsi/inhand-right.png | Bin 0 -> 650 bytes .../Objects/Fishing/Shafts/gold.rsi/meta.json | 22 ++++ .../Objects/Fishing/Shafts/iron.rsi/icon.png | Bin 0 -> 333 bytes .../Fishing/Shafts/iron.rsi/inhand-left.png | Bin 0 -> 579 bytes .../Fishing/Shafts/iron.rsi/inhand-right.png | Bin 0 -> 620 bytes .../Objects/Fishing/Shafts/iron.rsi/meta.json | 22 ++++ .../Fishing/Shafts/wooden.rsi/icon.png | Bin 0 -> 352 bytes .../Fishing/Shafts/wooden.rsi/inhand-left.png | Bin 0 -> 664 bytes .../Shafts/wooden.rsi/inhand-right.png | Bin 0 -> 676 bytes .../Fishing/Shafts/wooden.rsi/meta.json | 22 ++++ .../Objects/Fishing/fish.rsi/anchovy.png | Bin 0 -> 251 bytes .../_CP14/Objects/Fishing/fish.rsi/bream.png | Bin 0 -> 292 bytes .../_CP14/Objects/Fishing/fish.rsi/eel.png | Bin 0 -> 338 bytes .../_CP14/Objects/Fishing/fish.rsi/frog.png | Bin 0 -> 300 bytes .../Objects/Fishing/fish.rsi/goldfish.png | Bin 0 -> 261 bytes .../_CP14/Objects/Fishing/float.rsi/1.png | Bin 0 -> 266 bytes .../_CP14/Objects/Fishing/float.rsi/2.png | Bin 0 -> 204 bytes .../_CP14/Objects/Fishing/float.rsi/3.png | Bin 0 -> 337 bytes .../_CP14/Objects/Fishing/float.rsi/4.png | Bin 0 -> 292 bytes .../Fishing/food.rsi/cooked_fish_meat.png | Bin 0 -> 226 bytes .../Objects/Fishing/food.rsi/fish_meat.png | Bin 0 -> 205 bytes 48 files changed, 380 insertions(+), 15 deletions(-) create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/grips.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/shafts.yml delete mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Fishing/fishingRods.yml create mode 100644 Resources/Prototypes/_CP14/ModularCraft/FishingRods/shafts.yml create mode 100644 Resources/Prototypes/_CP14/ModularCraft/FishingRods/slots.yml create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/inhand-left.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/inhand-right.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Fishing/fish.rsi/anchovy.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/fish.rsi/bream.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/fish.rsi/eel.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/fish.rsi/frog.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/fish.rsi/goldfish.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/float.rsi/1.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/float.rsi/2.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/float.rsi/3.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/float.rsi/4.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/food.rsi/cooked_fish_meat.png create mode 100644 Resources/Textures/_CP14/Objects/Fishing/food.rsi/fish_meat.png diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/grips.yml b/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/grips.yml new file mode 100644 index 0000000000..0c44b34446 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/grips.yml @@ -0,0 +1,96 @@ +- type: entity + parent: BaseItem + id: CP14ModularFishingRodGripBase + abstract: true + categories: [ ForkFiltered ] + components: + - type: Item + shape: + - 0,0,0,0 + - type: Sprite + state: icon + - type: ExaminableDamage + messages: CP14WeaponMessages + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:CP14ModularDisassembleBehavior + - !type:DoActsBehavior + acts: ["Destruction"] + - type: CP14ModularCraftStartPoint + startSlots: + - FishingRodShaft + - type: CP14MeleeSelfDamage + damageToSelf: + types: + Blunt: 0.5 + - type: MeleeWeapon + angle: 45 + attackRate: 1 + wideAnimationRotation: 135 + wideAnimation: CP14WeaponArcSlash + damage: + types: + Blunt: 0 + soundHit: + collection: MetalThud + cPAnimationLength: 0.25 + - type: Clothing + equipDelay: 0.25 + unequipDelay: 0.25 + quickEquip: false + breakOnMove: false + slots: + - neck + +- type: entity + parent: CP14ModularFishingRodGripBase + id: CP14ModularFishingRodGripWooden + name: wooden fishing rod grip + description: A simple wooden grip for a modular fishing rod. Lightweight and easy to handle, perfect for beginners or casual fishing. + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Grips/wooden.rsi + - type: CP14ModularCraftStartPoint + startProtoPart: CP14ModularFishingRodGripWooden + +- type: entity + parent: CP14ModularFishingRodGripBase + id: CP14ModularFishingRodGripCopper + name: copper fishing rod grip + description: A sturdy copper grip for a modular fishing rod. Durable and resistant to wear, ideal for intermediate anglers. + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Grips/copper.rsi + - type: CP14ModularCraftStartPoint + startProtoPart: CP14ModularFishingRodGripCopper + +- type: entity + parent: CP14ModularFishingRodGripBase + id: CP14ModularFishingRodGripIron + name: iron fishing rod grip + description: A heavy-duty iron grip for a modular fishing rod. Provides excellent stability and control for tough fishing conditions. + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Grips/iron.rsi + - type: CP14ModularCraftStartPoint + startProtoPart: CP14ModularFishingRodGripIron + +- type: entity + parent: CP14ModularFishingRodGripBase + id: CP14ModularFishingRodGripGold + name: gold fishing rod grip + description: A luxurious gold grip for a modular fishing rod. Beautifully crafted and highly durable, favored by elite anglers. + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Grips/gold.rsi + - type: CP14ModularCraftStartPoint + startProtoPart: CP14ModularFishingRodGripGold diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/shafts.yml b/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/shafts.yml new file mode 100644 index 0000000000..36ccaa7df0 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Fishing/FishingRods/shafts.yml @@ -0,0 +1,58 @@ +- type: entity + parent: BaseItem + id: CP14FishingRodShaftBase + abstract: true + categories: [ ForkFiltered ] + components: + - type: Item + storedRotation: 45 + shape: + - 0,0,0,0 + storedOffset: 0, 5 + - type: Sprite + state: icon + - type: CP14ModularCraftPart + +- type: entity + parent: CP14FishingRodShaftBase + id: CP14FishingRodShaftWooden + name: wooden fishing rod shaft + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Shafts/wooden.rsi + - type: CP14ModularCraftPart + possibleParts: + - FishingRodShaftWooden + +- type: entity + parent: CP14FishingRodShaftBase + id: CP14FishingRodShaftCopper + name: copper fishing rod shaft + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Shafts/copper.rsi + - type: CP14ModularCraftPart + possibleParts: + - FishingRodShaftCopper + +- type: entity + parent: CP14FishingRodShaftBase + id: CP14FishingRodShaftIron + name: iron fishing rod shaft + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Shafts/iron.rsi + - type: CP14ModularCraftPart + possibleParts: + - FishingRodShaftIron + +- type: entity + parent: CP14FishingRodShaftBase + id: CP14FishingRodShaftGold + name: gold fishing rod shaft + components: + - type: Sprite + sprite: _CP14/Objects/Fishing/Shafts/gold.rsi + - type: CP14ModularCraftPart + possibleParts: + - FishingRodShaftGold diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Fishing/fishingRods.yml b/Resources/Prototypes/_CP14/Entities/Objects/Fishing/fishingRods.yml deleted file mode 100644 index 7b41dddee7..0000000000 --- a/Resources/Prototypes/_CP14/Entities/Objects/Fishing/fishingRods.yml +++ /dev/null @@ -1,15 +0,0 @@ -- type: entity - parent: BaseItem - id: CP14BaseFishingRod - categories: [ ForkFiltered ] - name: fishing rod - components: - - type: Item - storedRotation: 45 - shape: - - 0,0,0,0 - storedOffset: 0, 5 - - type: Sprite - sprite: _CP14/Objects/ModularTools/iron_spear.rsi - state: icon - - type: CP14FishingRod diff --git a/Resources/Prototypes/_CP14/ModularCraft/FishingRods/shafts.yml b/Resources/Prototypes/_CP14/ModularCraft/FishingRods/shafts.yml new file mode 100644 index 0000000000..f8363c4681 --- /dev/null +++ b/Resources/Prototypes/_CP14/ModularCraft/FishingRods/shafts.yml @@ -0,0 +1,45 @@ +- type: modularPart + id: FishingRodShaftWooden + targetSlot: FishingRodShaft + sourcePart: CP14FishingRodShaftWooden + rsiPath: _CP14/Objects/Fishing/Shafts/wooden.rsi + modifiers: + - !type:AddComponents + components: + # I like the idea of parrying with a fishing rod, + # it's too cool to take away + - type: CP14MeleeParriable + - type: CP14FishingRod + +- type: modularPart + id: FishingRodShaftCopper + targetSlot: FishingRodShaft + sourcePart: CP14FishingRodShaftCopper + rsiPath: _CP14/Objects/Fishing/Shafts/copper.rsi + modifiers: + - !type:AddComponents + components: + - type: CP14MeleeParriable + - type: CP14FishingRod + +- type: modularPart + id: FishingRodShaftIron + targetSlot: FishingRodShaft + sourcePart: CP14FishingRodShaftIron + rsiPath: _CP14/Objects/Fishing/Shafts/iron.rsi + modifiers: + - !type:AddComponents + components: + - type: CP14MeleeParriable + - type: CP14FishingRod + +- type: modularPart + id: FishingRodShaftGold + targetSlot: FishingRodShaft + sourcePart: CP14FishingRodShaftGold + rsiPath: _CP14/Objects/Fishing/Shafts/gold.rsi + modifiers: + - !type:AddComponents + components: + - type: CP14MeleeParriable + - type: CP14FishingRod diff --git a/Resources/Prototypes/_CP14/ModularCraft/FishingRods/slots.yml b/Resources/Prototypes/_CP14/ModularCraft/FishingRods/slots.yml new file mode 100644 index 0000000000..70b11fba90 --- /dev/null +++ b/Resources/Prototypes/_CP14/ModularCraft/FishingRods/slots.yml @@ -0,0 +1,5 @@ +- type: modularSlot + # It's fucked up, + # but what the fuck else could it be? + id: FishingRodShaft + name: cp14-modular-slot-fishing-rod-rod diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/icon.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f79a237b57dd0e34482754a33f60b57bcfa66ca4 GIT binary patch literal 175 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}nVv3=ArY;~ z2@nBB(PZqVD6dTsJnhw*Og| zgm{49|H7JI%(c8%|8IUY<=^yQQ2`>dBGyU8s}8JCX7exMneh~2sDl;*gHMU_-*WqK Qcc7&Vp00i_>zopr09rpg{{R30 literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/copper.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..4b39bc0a08aaa178d9c0533de91a1f6bf511bac4 GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|+B{txLn`LH zy}6h3uz>(uz+}@ak}R)G8nqt_Ua2xzKdI8B{n9dSPrdpldl~KC@vZx{j1#D<;rZ55 z$@_E4--^gac*{ks$Oc7^}2t44p$=2-nsdiW9Ka;gp zy+F+j4=(2IUDclVVv+az9cR-tS0@>s|Nlrp?DHPK$g95u)O@*v!dwIAJuc93fB(Gp z-rmjko@`zi4ARKJ&>;SH`{{e^TY4`)j4#^d)9$CBlo$T-zMZel=S#vGr;3-Xd9|Ar aXhZfozf2{;c0T=lkS`MB7SoG+>;3PKTrF|1bAEzuhBG@yW3eP z-j{B`+(s)3+hX_auz z^bch}Dy-by5AoifBfswP;rIu_)2u3N85kbuiT`*dm;0jjvoT1qr>mdKI;Vst0QHnk A$p8QV literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..54a9ca89fc666da700b061c981662918c16abebd GIT binary patch literal 219 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|rh2+KhE&XX zdut=_Ap-%{3&ORxwrET`{l(;_vg@@3^;%jkFCF21x6 zsF&fv#j?%kywhhSdEL8eeRNld>-{UPF;4fd?DW1`<15{6HofS_?0qXgTWoPn1=$Y- z@AhqcU%gZIpZf2|l`lD5j(pXe_AT?#%zn3oatqh#t9EV%s`+z<)%=s3;mzXy-5@QV Lu6{1-oD!M<0zg(= literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/meta.json b/Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/meta.json new file mode 100644 index 0000000000..51d9397ad4 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Fishing/Grips/gold.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CLA", + "copyright": "Created by omsoyk (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/icon.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b510967e413179b3f389045068ee19716d50c8be GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}lRaG=Ln2z= zUf9TcD1fKsA$L+!cq+^8zB>+K3GF6tn6y)P(;C#6RaiUBu0|hRDe>T_N8pm*Y#Zuj z9b8;os@1aevgCFacDOAGQ5FhxWp+6mylUd-o=lmp_pRbHjx9V@*=DNi_uTuV(D94| z`b-VwcSRZge64Aj9_xDLPucsuDV_VLcg>2v{OEIS@?}-CN*|Xk$C&!KHP7Uq{`DB> OJO)o!KbLh*2~7a{98`7y literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..c274271dd2dd5d66ddbc9536f794634c5096b7ad GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|=6Jd|hE&XX zdvhc2AqO6Zi_N}%<*Ymolg~`xP2hNz#L2a5f|ZDZ8>gFg}>0%~Na zS(mx{<@D)imR#!b#|G=wyy~Iv#pDob2AKc}FtrgZc Rf4dFV<>~6@vd$@?2>=%#QNREI literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/iron.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..940acdc10b290256fd9d4de91176ef85819025bf GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|=6bp~hE&XX zduuQ6Ap;4P3;H=pH(ezf*wPZ1C7O0dG%3X{Xk$8}v2cM)M}4cud)|b(er2V7K#dF! zu9cX*|8?#|SNNyCd6qiMg}zo8bqKxsxa9Ooo7h8#nToV7zMEz7=Ju=475mF?Y!BU? zt+f17xd=!rP_yspqpw~wzdc;|W&WIV$M-1<2wq=pvBh8b`<|~X+h%Y5E6czjv4uPM WrNa8lBB%F*w0OGuxvX@Sl}?)~McNO1Rri;$ulad!f%f6!2`d*m6?p`_VVI$;XaDoagB7~x1kx6|PEywB zV@g?|sr=dgLd?8}=PrNeS?w32d@5&^RYQz>fb4|HVr~aDK#n*7bgqEr8jH4xOMvcU N@O1TaS?83{1ON?)P3Qms literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..205924a1191bae67d938b8c0bf0eef406135d81e GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|7J9lkhE&XX zdvhb_p#Xt~hs$?3XmxK{&r#UOqMa^a)Z=a0wA7*@VdAkvhfWF3o0_2hg1hrWE%P54 z_V8E^pnirw>#|>&JiWKO@?ApoQIXS1w=cv7FOLvgxb~5Pcf=DuIsLynEfdUEr%sF0 z=`OIiA0G?S#K4fCRCfDo!u&gmDgXJtZ+CyEQggwy^w+m9o8}*oNQ!Lv`_k&01OvkX a`AVj$D{^0oUfv4?>GE{-b6Mw<&;$Vc7+Vzp literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b36e29defa1e9d6438156e2e18610743f43d2e96 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|mU+53hE&XX zduuP}AqR91!4~*JmqORykm-TL>DuMSf-B78W}~gTb(NZ+#XiGdR$@o zZq<7wpnirOrt;l>w`-OyuDh)X(#XJYV6xcelegKoY`y$2K1j|lS6x7G`syF~^VQx}zT(s||Lsxv g?VT6{L&JJYW+6ejFN>7LyFuDKUHx3vIVCg!0MWTyPyhe` literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/meta.json b/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/meta.json new file mode 100644 index 0000000000..51d9397ad4 --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Fishing/Grips/wooden.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CLA", + "copyright": "Created by omsoyk (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/icon.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2c92a462deb11fc4773725330acdb3a1e9fccec9 GIT binary patch literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^T<%$_ceAsLNt zukGh*3J_uYkj%2KH`mWm;NmqQ#|xJ(y@>I?;BE0$E^%$2Zl9iBUaphCowMN?yL`9n zTrv3{`}B7&yG@OJRj3lsT!xM(Qd;G_Q?Ji`oPX`)6Bk}xr9IpSIA6tPp`^Q7dJ0m>%183};bGq`xWgEAqDXN=96tV(2 zSDtg3#`NfnPg`@^Gy&E%lTWVJx~QAf`TWM5jSXMUh6!$7T_1d{PVhGOBTKXYb!*+u z9@(=hX65?>B^!e}?md*?j@umO^;__a_Vx8HLcXu3Z~f(*$-1hEsZfIZR1`1B$qWuI ZF8)gvwnUvd+qehB_jL7hS?83{1OQJ$h@$`i literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..486c56674735b68159b6e18c7e061024ea1edf8c GIT binary patch literal 706 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>V5;$SaSW-L z^Y*r3_H74|10RIdi&MtRN|(5qKiA3a;;VO__~Y5#%kJ}DDa3SNUUz1hu<>j^AAKI5 zi9fO;H_U1*OWfi%rz~|!y4z}=sp@grOmn6$*!1Gdt;=Vavg_;pRoC5Ok$KB=cJ=jq z8^MXIf3ExdL&|XViu8t#-#QvX_g$7>-+H6ws+xoLQ&*RB=lHKAT|bs%wR7X6*xX~G zGsEP%y|-#OD!n@uQ28~xwqfP!sM5nL-lwSceL8bPeErT}p*Q(AefqDrDdB5!!R?J% zr}woKaTZKv{c(1k)9=(ZwsP0sW%DcSwfOc%Wr_IltroMl`(^tpAw1vUw)(4Xi^bbh z-Tn7_Pds|H=vzh9Qjb5Wzk?>f=U#cATT5H${+zk;Cmxv#P#Xx@6U>C lddDOl88zE27ZD)7U${>jS^c^#Rg?r0^mO%eS?83{1ORCyNm2j+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e912be7781afe39248ea5920bf2e8c988217b710 GIT binary patch literal 650 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U~=(vaSW-L z^Y)Hm_H74|10R>GDQv1dGsTCknf>z7iWdnd9=RqzpVo9Rg;(w?=Py<+w#4&MTv0Z& znif=ewK*vWoOrhM;Qa@?T-NT;h?tf#_s;MCWphiuzq9o&IIje>3mKdh=#4)0#rR6D zP)Vv#iT3Q@yN$&E-zZsfJyTn7Vu9gyEs1+MuaE4@&O5j9{i?X-Yp<yY>Et6!E$up>OD8FX%;_DF0HJLds)%S^kI*su;9f0 z`F7Uf>cQEk{HLYpcHOdOFnj+`C$+xEdoOEe$oxsiU;KXi`_T1wvJIOw%ilB|mv*mz z{afm<&K%Zi)`m}?`~Q6lSK}_4UDX^Oxb3C1g0AiRC_AUkK{wg{jy6z(|EN1dKy;R$4lXO4y{A}aQr0U7$x2>)}bWQtyzFzU> z&)u(nFZ{)OPbxg$(CgplMS08HWolmWUMc+%{qCLooDa?KSw7{rXYBd!X#5~G{O{bDdW#~UZ7-TE!^=CLpD@^(etYeIPK a#w-5EHR@uQJYEQa1U+5-T-G@yGywqb-!0q# literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/meta.json b/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/meta.json new file mode 100644 index 0000000000..ff0451567b --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Fishing/Shafts/copper.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "size": { + "x": 48, + "y": 48 + }, + "license": "CLA", + "copyright": "Created by omsoyk (Discord) ", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/icon.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cdfb4d2bc8650b00cc404674b982029fd6dc54b5 GIT binary patch literal 329 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^T<%$_ceAsLNt zuPX8#GLT?>5PnFKqi=!Z;)yDo1z4C=jyn`{Fm;(oJb5CLG(F!;7YXRb7La`*uQ z*O+ITx;%fTGiJvw@nB?_Q5OAG_v0JmQ?r1KJx^Ty8CPU>8nHImYd!qrXOg35{bpN~ zTj!1WLOZlRZaR=)A(ZN$xF_mxXy>wC)x-zcOOt$_aVMr3dA0NiNxy!}!5n|zes!g> zarxBMA2@m1lo?|VYl_CF)vtWv{~^Nlz6mXl0cP)LNHi3UargAj1P5 Y#h}hF)78&qol`;+0I^Ae`v3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..166467bf794dacf3c3a5fc746f563cfa5595145e GIT binary patch literal 632 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U^4P_aSW-L z^Y-?_zS|B04G#;~@6plP+*EvHq59N0DMCS#G8u^xj+fOnxHWV)3kf8&&e00x%614W zNVsZtMr-pghUkFY*SAk=vVH73|GS?5!QG0oV`V1FOh9{(zy<#8=F^vPSI>B+JoB0I z)UWe@#1-s~kr14iV_^`#|L?cGe`G@^&N`VTzcSD1aNcgi-EWVj9By3M6{5@iN-~4r z&0yJ2k87t}FKRjGJ=n_hU@yx~wbivtX0nFK*oQ}k>oVx;-J3ameVn_JQoNn)p7rZD zJ~MnJsqo02`&8wnneFSN7`6n(xjZ?0e12B;ZmWrmO8>l^Ed6~xKE6Kp^8VX-KL7r% z^>QmwW0-u^PV2en>(mprf1~6RUX|TGyLa|nUiP?o%wNOLCI99)WFjy7_oLk=hbRA! zCv1>RV196qAwDwUyTG0*F_!P;4&pa_IJSwEGcHB)Is@xd8^e9Gwgv=?zTE$Dsoi&O z+pG5)R%-=){&zTTUg~`7i~Hq!R(YJwk&(B3`8?;=q9vBAlx!_ml%Hd`Q52?McrdHz zv+FI+22<(diEM}N{R!s3QT)Bfu4L~5CPV4t$F?mjS7o^N_H62Z=83%Q%T7-5l9s*f zyH3(Y;Lhazae6(u!TGym|6bYpmZg4u^8!o$3n~ms^~PTphCg=quU1&>c{5sHeA(NH znp^cBK6w@O)!TgMuD&}8GJH?>*6uVu`r(B8w6e4SX}EtJI2VAVE)8 KKbLh*2~7aCZ4d|m literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/gold.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..96f6fa9d37f450a7106f0ac1d56375b3fe11f163 GIT binary patch literal 650 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U~=(vaSW-L z^Y-?}zFQ6g4G#+^r8~S7Fuk(OwX4Lb$hlCRt80nX#ibk*-$_<9mWYXnXq&&#+O^o@ z=+-HL9I}fxe`1*ZY|W1vw}#w35x?vAUjKIPOjh_UK}MiGNMHxwXGibZ|JpY3{$0lN zH!bo1KfUvZ?d$(ety{dz)urj>kyQy_(z4Y<=IyNKo4WjW@2ogo@v5yc5yn41x)|?b zI>W9j>!V)v!o0V(ne(LA`DoUe(-s6&?lOvN0~7v7%| z#J}+5n|`|k*BCnX#J1__#bs^NvpwdTnqK@&`uG!OB)`wtB)!|}{MN!JBC$%`QtNfpyk(PM28~ZDN(De_Xig$@EbvWS-pC*Xz|5^)R?RYo0c@(PQ=xkBQ=S z{*tFxDYTrrd|YaF_rAi~oIMFv7ne0p*zNgVWZ|bTmmi0%+qicnFf6|FpD$XWrLBMJ zPx9;EOMmh5_0G;Q^vd3^b-3M|&o1lw*T081uQ+>;Gw;X={#|q5&0crxZJB!B^53hZ zuBO$OUY!}eKk)MMlB+Y`Z8QA&uRE;a)|Q8@uAAKz{8mx5C9A_ssR4_gu1S~-;9}ZyxH2R>8{~2Z c1|_9k%zGAhz5l*UB@4v&boFyt=akR{0B~f35C8xG literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-left.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..173805996332fdaffb73618cda08dd358087cf6b GIT binary patch literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%z|9ZMOhE&XX zduL%DlcPYx!=2ms1H-FXc$s)SdD$Y_GgZYdmNSILJ1R^FdywIDVBt>o4Bd748%<-Y zY%?qmzRkJuzj(&&-E(h7_PtSH0ve743goQb&U+{)GrQN_%|%5o)MxFzpxPftwK%gs ztvy?nY4&<)r?=>0OU{>Xws#8lyxX9&`QwR$b{m%6`$ef9>^nRc%2YR|8n_?O?l>D<-s$g2Mr&(ww9P5k-b@a_m!C42p5y<@-n zt2kfro!)P^TTAe&oAD~MSraE8teJN1(1SX@4~@F6c2k-YQcnvY`)+}Kh1oj3Y{k@# zUS)5+=ZF_&Z1nmz>pMpSbGzC-tEUTfy`qjKO_j;LVx7wHCd+I3j)bQ(YbGW!C0u>A z)_^%t{eMKQ{nwcn_pcKVQONo_t9BG)&sA$R6m#R*b!n_xhtg0!f@{MS&l4< zvws2u=SK1?SNU-JvfSGT>#sRpc*A}|m_g9~U%(QBTfCB$r|#w0+M`ZqyHD* zod^0M(2V2u+voRcYxk&snV4C)(d+7N6-Kxp=4{s2jrQhVcS!~8FHcuLmvv4FO#rIw B{4oFk literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/iron.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..f72df6ee62dda0ff023f62861ab29e8a23d25b99 GIT binary patch literal 620 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U{dpRaSW-L z^Y+f(yhjcK2R;^-@E68L37CppxZtu#(VxLrYl_wr%>`c7iyRaJ)-6z;)M}lz&CYSQ zUj9bScRe5EIM}UsAN%(|>(5r>B^X^dkbB~ zE_c4`)lT2u`FVEsL-td#0)HG{2JKvB{(9=YHQ^h@;-BO*th40kewniWh2QE0w_m>A z5jkJIol(Fuj@5j6&J%X8^Uw6>b(~n=ZtvMwUz(R+zss&QwIeL~tv+0z|+yf<_03t?=2nDPIE>y)WlE6i{G zciq_`svxvCPy77AWYup|#W&b+#XGH)IdkUUy&XX}-ju89n2Oz3T%F2}?7fuJ2^N<; zZylQ$aKq&pyO*`>vfW~t>1%EpMCWheJYv``IV)}Y$CdAFnLhT*Yvh{!xy9kI;`U2% zV}avhc2m;MXU?e=)#9jI@MUM`p)IrP&cDq!ocrRi!j2iG9yUwF+vPR>R)5oql*ylU zHh$0Z<;Va2ael|w`YpvI`JpC_dr_{+m7B^owRs6XVdLVDLjo?lFytOw!0VBk$ vefQa%64mMV_ZG~(8=3wzUI6aThDEPx$8c9S!RA_?-u?D9A;u+o{ZEW@eQ*~qH$}c`7_9-7ku4nNR#>{ z6*U)3acImC3K z%X1y|_|R9g<$V(^m6I1h(?M+ZQ(6@GR~u|YkeezWFIH=@+3nGEh_fzTqpacGZ9A8| z$TiZM3Q_3_WrcAfK0dc--6YCP0XR&;=1v%!0C3ouFixy4_SFD`(O8t7!u~Ntt3YeG>XCj1v)>C~is=`0Dgo%{$ZQw)!eOfx&1jfS=~1Oux_mrJ_HU<&edaSW-L z^Y*r3{$&S|10T~*i8pX|F6?I4z89#Y?-6@LcT+pQFjg`Odecp2XVaTl3O*77)NwPBzd@wsxXtnC1T}*F} z+|W#&D81Gw#D7m1)12uFr?1_4-0kgOEE@6q_xX@Vt5hE(yuYxg?(;Qa!N}Ub4{i3j zol(o;Tv4=_3uvX~z8!Clo(|V#jPj0id2;%EeAdS5WW)J)XMS84cg(l&RdV4u3gzFote2YaNO!IY`)w=sCc<|JNJu z&vy0wFrjU=EqmV9MRf+eoY2X1e~w=MyBuBnz0p}bsgM6;J(Zn1r*iVgj33%cTs6VE zthwrocV{fvao#po%`ta%xY*BS{x{;TTdT+KskwUchuG(tnY*^nWnr&wU-svRL*&QW=*R5-yX{wN?t3e{`FiTa@_7tf^&hS~b^8C2_396Q{kkpx s*lK?i?`9TT7QL{{e5tLB@POdCnEz#+&iAuyG0#9^p00i_>zopr002NR1^@s6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/inhand-right.png b/Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..31df31dc8fd0fe3d7231c4a8d0fba7bcf18c7f09 GIT binary patch literal 676 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>V2bl}aSW-L z^Y+f(yjuYx2R;_xwsTyT7b&50LvWh-61_KJd$yetxXAwEk@`v_h3Z!E1ny`7YYk@a z5ZA0}%ZjJpR=r-j!k6RUk$?ZUwLCfWbWZWcrNsh_KwFT&iQZG6&fiVTH_K6A3Y;8QZE9`E~{+Q)UDG}&v-+WdVJkNdu8 zcmBWO3jZwOi}HP^Z2Qs^1zdN(y&2#6af$fU*sJSVkvz{(dhLdt|K*eAWlOK@i_{l6 z@+JG%y2aYE%dA-+d;0Hj41aF}Xl0i7N9JR+dRFFMTiAk)C$O^xtkHri6;- zJZt8OUyeyvew!n=DQtDqgWcy=r`O!`-Jkh-=E2vI5-(OYPpI^GFR<_Ri?@d-UrF7g zSr=&)n|I~xFT=uL%LRR&&A!>RC3DiEsC$#IndW|b_B>KziCnjiIPd|%C zF`kbU&0S|Nvl3|g>7%C~zPpsZ_STYDZ`SP&TGxc|`gTe~ HDWM4f*L_0* literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/meta.json b/Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/meta.json new file mode 100644 index 0000000000..ff0451567b --- /dev/null +++ b/Resources/Textures/_CP14/Objects/Fishing/Shafts/wooden.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "size": { + "x": 48, + "y": 48 + }, + "license": "CLA", + "copyright": "Created by omsoyk (Discord) ", + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/anchovy.png b/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/anchovy.png new file mode 100644 index 0000000000000000000000000000000000000000..2a33a9c643c0f4cb67b8289acade70454c0e3fc7 GIT binary patch literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}TRmMILn2y} z6C_v{Cy4Yk1sZU*DXqxN`oBNr=&k=(47xjGdX2@;B}QyYdi#HC>9YUlbG|9wHcYX6 z@b33@9wVt)Jmz_KlYXoVJ(%!lck9G;d=dBVAJ6#sgX8es@9QNcBoqRj)-j(bvt(vw zc1}sWSkDFosg8jls%_dXuSsVYpI|(}7bqr@%3)x0>cfXG-fa(-T@Epvu3}(#7;D@NAMbNSM|Sa+}*hjRhD=N77j%K|;X;OXk;vd$@?2>_NgVkZCq literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/bream.png b/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/bream.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd33f9fd25d8ae25a76da1c9faa94dde5418bc8 GIT binary patch literal 292 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}_dH!3Ln2y} z6C_v{Cy4Yk1sZU%Nf=C8ths*YgZ)!j*qMRg@ZQ|#5>J-4NJ;>~s^xm>H*LgUFNjQEIv`(uyG*|m+s@tV;_EfQr_e=S%-a&?f;gC z?^~;RzR%mA^uXX!(u7G55++Ov_z>ys_SFI+UNm4q_xO%y6Vv1QnQiZzopr03JwkApigX literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/eel.png b/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/eel.png new file mode 100644 index 0000000000000000000000000000000000000000..d6fab552c7eb2584daa458b9823e7eae5f3af72b GIT binary patch literal 338 zcmV-Y0j>UtP)Px$3`s;mR9J=W)3Hm#KorOEZ=@2TP@$kh!7+ohgV3pngPT)v*3C&exeE^cBT6SX z!P(V92T7d-K_x;!16l|Y0v1AhP;;G>qKkJRF7GoQ_wN1f9S1@PA^w?TT5xz;rFyxn z%bp8BG)Q>a%N>C3!NcDM_-r0z3V`*ZOWAXY1_{T#JLAg$6iha6MXTD+MszN29Dr7{ zt}8)Kl1*%S1F&FSIVUcBSl3#O4dCo#TR#V5?&CMkub!;WF?xde=4q(7ejNT-2iR}- ze;vpwfPXup;x4jNTf={iIcj)%rMN^ID&D8L(OK4`Yc=Z{U~{7cKpHB7Op)(S9Fy;8 k9pHNq;Oln?A%qYnW&=%Ey_!HDRR91007*qoM6N<$f~9_nZU6uP literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/frog.png b/Resources/Textures/_CP14/Objects/Fishing/fish.rsi/frog.png new file mode 100644 index 0000000000000000000000000000000000000000..aa41c40aad651b96b8cf62074b717e7f0529f394 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}&pcfmLn2y} z6C_v{Cy4Yk1sZU%Nf-nziaa;v=l<|zY=^t8=S!%B{E$dfiB-L6BUYrtw_?)Y|9{S@ zvpMrivU#S)wXx)y^Qa{p5#*%|IXd}&jSSK-`6Kj2zioN!MF9#&%gRA z)(xE@yx%3h{j=ZsN_nwRv#~NWGxOn-q4JXc>wcZkSb4~O)6y6?n{`M!fc3!LBWzhgM`eE8De>XNZ twl?O-o*sj`BQvv8S`TQzo%(=*;Yg=$g8$^#yg;uoc)I$ztaD0e0sx7$V$uKr literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Fishing/float.rsi/1.png b/Resources/Textures/_CP14/Objects/Fishing/float.rsi/1.png new file mode 100644 index 0000000000000000000000000000000000000000..75ce9b950caae09d239dbe1eeaa0f5ff28dc9697 GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}M?75|Ln2y} z6C_v{Cy4Yk1sZU*?mMH)B?HBF{#*alOn1pM+zeiqCsFqz}! wBw;ok!$rUCjC45qCd#_`gvmm!Y~W$Y+w8hl>89B>po5aHyW(T)EV$A+ql@Q<1K!m7r4egJ2umzQ)EzN5j~3MP_E^ z=BusOMO4!kF>ZR_FWK?0e$J}@|G)p6^8YxG%YWt5!or~j4%<#&)V+CW_RfyR#w{`q zCJJVWy0$-!`b6#<8wdz8fgSdfPg3AE*=oLbW1E{=HUZC;Iht*(bKi