├── LICENSE.md ├── README.md ├── engine.cfg ├── export.cfg ├── fonts ├── font16.fnt ├── font16_shadow.fnt ├── font8.fnt └── font8_shadow.fnt ├── icon.png ├── icon.png.flags ├── models └── Bobber.msh ├── scenes ├── GUI │ ├── catch_popup.scn │ ├── fish_inventory.scn │ ├── fish_item.scn │ ├── hud_catching.scn │ └── main.thm ├── cursor.scn ├── effects │ ├── ripple.scn │ └── splash.scn ├── lake │ ├── Lake.scn │ ├── Reeds.tex │ └── WaterFall.tex ├── main.scn ├── main_menu.scn ├── objects │ ├── bobber.scn │ └── fish.scn └── player │ ├── Mouse.tex │ ├── MouseBoat.scn │ └── MouseBoat.tex ├── scripts ├── boat.gd ├── catch_popup.gd ├── cursor.gd ├── fish_class.gd ├── fish_inventory.gd ├── hud_catching.gd ├── main.gd ├── main_menu.gd └── objects │ ├── bobber.gd │ └── fish.gd ├── sounds ├── Across_The_Rivers.ogg ├── fishstruggle.smp ├── movingwater.smp ├── pondambient.smp ├── reel.smp ├── shore.smp ├── splashbig.smp ├── splashsmall.smp └── waterfall.smp └── textures ├── Bobber.tex ├── GUI ├── arrow.png ├── button.png ├── button_highlight.png ├── button_press.png ├── close_button.png ├── close_button_press.png ├── dark.png ├── fish_bar1.png ├── fish_bar2.png ├── hand.png ├── line_bar1.png ├── line_bar2.png ├── menu_back.png ├── scrollbar_back.png ├── scrollbar_fore.png ├── scrollbar_fore_hilite.png └── tutorial.png ├── bush.png ├── cloud.png ├── cloud.png.flags ├── fish.png ├── fish ├── archerfish.png ├── bitterling.png ├── crawfish.png ├── fathead_minnow.png ├── freshwater_goby.png ├── frog.png ├── goldfish.png ├── guppy.png ├── killifish.png ├── neon_tetra.png ├── nibble_fish.png ├── pale_chub.png ├── pond_smelt.png └── tadpole.png ├── leaves.png ├── leaves.png.flags ├── secret.png ├── splash.png └── water_ripple.png /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/README.md -------------------------------------------------------------------------------- /engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/engine.cfg -------------------------------------------------------------------------------- /export.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/export.cfg -------------------------------------------------------------------------------- /fonts/font16.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/fonts/font16.fnt -------------------------------------------------------------------------------- /fonts/font16_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/fonts/font16_shadow.fnt -------------------------------------------------------------------------------- /fonts/font8.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/fonts/font8.fnt -------------------------------------------------------------------------------- /fonts/font8_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/fonts/font8_shadow.fnt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /models/Bobber.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/models/Bobber.msh -------------------------------------------------------------------------------- /scenes/GUI/catch_popup.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/GUI/catch_popup.scn -------------------------------------------------------------------------------- /scenes/GUI/fish_inventory.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/GUI/fish_inventory.scn -------------------------------------------------------------------------------- /scenes/GUI/fish_item.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/GUI/fish_item.scn -------------------------------------------------------------------------------- /scenes/GUI/hud_catching.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/GUI/hud_catching.scn -------------------------------------------------------------------------------- /scenes/GUI/main.thm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/GUI/main.thm -------------------------------------------------------------------------------- /scenes/cursor.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/cursor.scn -------------------------------------------------------------------------------- /scenes/effects/ripple.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/effects/ripple.scn -------------------------------------------------------------------------------- /scenes/effects/splash.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/effects/splash.scn -------------------------------------------------------------------------------- /scenes/lake/Lake.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/lake/Lake.scn -------------------------------------------------------------------------------- /scenes/lake/Reeds.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/lake/Reeds.tex -------------------------------------------------------------------------------- /scenes/lake/WaterFall.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/lake/WaterFall.tex -------------------------------------------------------------------------------- /scenes/main.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/main.scn -------------------------------------------------------------------------------- /scenes/main_menu.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/main_menu.scn -------------------------------------------------------------------------------- /scenes/objects/bobber.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/objects/bobber.scn -------------------------------------------------------------------------------- /scenes/objects/fish.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/objects/fish.scn -------------------------------------------------------------------------------- /scenes/player/Mouse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/player/Mouse.tex -------------------------------------------------------------------------------- /scenes/player/MouseBoat.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/player/MouseBoat.scn -------------------------------------------------------------------------------- /scenes/player/MouseBoat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scenes/player/MouseBoat.tex -------------------------------------------------------------------------------- /scripts/boat.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/boat.gd -------------------------------------------------------------------------------- /scripts/catch_popup.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/catch_popup.gd -------------------------------------------------------------------------------- /scripts/cursor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/cursor.gd -------------------------------------------------------------------------------- /scripts/fish_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/fish_class.gd -------------------------------------------------------------------------------- /scripts/fish_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/fish_inventory.gd -------------------------------------------------------------------------------- /scripts/hud_catching.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/hud_catching.gd -------------------------------------------------------------------------------- /scripts/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/main.gd -------------------------------------------------------------------------------- /scripts/main_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/main_menu.gd -------------------------------------------------------------------------------- /scripts/objects/bobber.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/objects/bobber.gd -------------------------------------------------------------------------------- /scripts/objects/fish.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/scripts/objects/fish.gd -------------------------------------------------------------------------------- /sounds/Across_The_Rivers.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/Across_The_Rivers.ogg -------------------------------------------------------------------------------- /sounds/fishstruggle.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/fishstruggle.smp -------------------------------------------------------------------------------- /sounds/movingwater.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/movingwater.smp -------------------------------------------------------------------------------- /sounds/pondambient.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/pondambient.smp -------------------------------------------------------------------------------- /sounds/reel.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/reel.smp -------------------------------------------------------------------------------- /sounds/shore.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/shore.smp -------------------------------------------------------------------------------- /sounds/splashbig.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/splashbig.smp -------------------------------------------------------------------------------- /sounds/splashsmall.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/splashsmall.smp -------------------------------------------------------------------------------- /sounds/waterfall.smp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/sounds/waterfall.smp -------------------------------------------------------------------------------- /textures/Bobber.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/Bobber.tex -------------------------------------------------------------------------------- /textures/GUI/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/arrow.png -------------------------------------------------------------------------------- /textures/GUI/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/button.png -------------------------------------------------------------------------------- /textures/GUI/button_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/button_highlight.png -------------------------------------------------------------------------------- /textures/GUI/button_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/button_press.png -------------------------------------------------------------------------------- /textures/GUI/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/close_button.png -------------------------------------------------------------------------------- /textures/GUI/close_button_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/close_button_press.png -------------------------------------------------------------------------------- /textures/GUI/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/dark.png -------------------------------------------------------------------------------- /textures/GUI/fish_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/fish_bar1.png -------------------------------------------------------------------------------- /textures/GUI/fish_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/fish_bar2.png -------------------------------------------------------------------------------- /textures/GUI/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/hand.png -------------------------------------------------------------------------------- /textures/GUI/line_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/line_bar1.png -------------------------------------------------------------------------------- /textures/GUI/line_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/line_bar2.png -------------------------------------------------------------------------------- /textures/GUI/menu_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/menu_back.png -------------------------------------------------------------------------------- /textures/GUI/scrollbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/scrollbar_back.png -------------------------------------------------------------------------------- /textures/GUI/scrollbar_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/scrollbar_fore.png -------------------------------------------------------------------------------- /textures/GUI/scrollbar_fore_hilite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/scrollbar_fore_hilite.png -------------------------------------------------------------------------------- /textures/GUI/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/GUI/tutorial.png -------------------------------------------------------------------------------- /textures/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/bush.png -------------------------------------------------------------------------------- /textures/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/cloud.png -------------------------------------------------------------------------------- /textures/cloud.png.flags: -------------------------------------------------------------------------------- 1 | repeat=true 2 | -------------------------------------------------------------------------------- /textures/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish.png -------------------------------------------------------------------------------- /textures/fish/archerfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/archerfish.png -------------------------------------------------------------------------------- /textures/fish/bitterling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/bitterling.png -------------------------------------------------------------------------------- /textures/fish/crawfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/crawfish.png -------------------------------------------------------------------------------- /textures/fish/fathead_minnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/fathead_minnow.png -------------------------------------------------------------------------------- /textures/fish/freshwater_goby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/freshwater_goby.png -------------------------------------------------------------------------------- /textures/fish/frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/frog.png -------------------------------------------------------------------------------- /textures/fish/goldfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/goldfish.png -------------------------------------------------------------------------------- /textures/fish/guppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/guppy.png -------------------------------------------------------------------------------- /textures/fish/killifish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/killifish.png -------------------------------------------------------------------------------- /textures/fish/neon_tetra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/neon_tetra.png -------------------------------------------------------------------------------- /textures/fish/nibble_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/nibble_fish.png -------------------------------------------------------------------------------- /textures/fish/pale_chub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/pale_chub.png -------------------------------------------------------------------------------- /textures/fish/pond_smelt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/pond_smelt.png -------------------------------------------------------------------------------- /textures/fish/tadpole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/fish/tadpole.png -------------------------------------------------------------------------------- /textures/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/leaves.png -------------------------------------------------------------------------------- /textures/leaves.png.flags: -------------------------------------------------------------------------------- 1 | repeat=true 2 | -------------------------------------------------------------------------------- /textures/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/secret.png -------------------------------------------------------------------------------- /textures/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/splash.png -------------------------------------------------------------------------------- /textures/water_ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CowThing/MouseBoat/HEAD/textures/water_ripple.png --------------------------------------------------------------------------------