diff --git a/.gitignore b/.gitignore index d8be4bd..e233d8b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *~ .directory +godot +build diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fd6035f --- /dev/null +++ b/Makefile @@ -0,0 +1,28 @@ +prefix ?= /usr/local + +all: + echo "making" + mkdir -p build + cd build; git clone -b 2.1 --single-branch https://github.com/godotengine/godot || true + cd build/godot; git reset --hard a524cc92e7cccd012d028d870e4648c59473d04e + cd build/godot; scons -j `nproc` platform=server use_llvm=yes + cd build/godot; scons platform=x11 tools=no target=release_debug bits=64 use_llvm=yes -j `nproc` + mkdir -p ~/.godot/templates/ + cp build/godot/bin/godot.x11.opt.debug.64.llvm ~/.godot/templates/linux_x11_64_release + build/godot/bin/godot_server.server.tools.64 -export "Linux X11" build/cowsrevenge + + +install: + mkdir -p $(prefix)/bin/ + mkdir -p $(prefix)/share/applications/ + mkdir -p $(prefix)/share/metainfo/ + mkdir -p $(prefix)/share/icons/hicolor/64x64/apps/ + mkdir -p $(prefix)/share/icons/hicolor/128x128/apps/ + cp cowsrevenge $(prefix)/bin/ + cp com.github.dariasteam.cowsrevenge.desktop $(prefix)/share/applications/ + cp com.github.dariasteam.cowsrevenge.appdata.xml $(prefix)/share/metainfo/ + cp cowsrevenge_icon_64.png $(prefix)/share/icons/hicolor/64x64/apps/com.github.dariasteam.cowsrevenge.png + cp cowsrevenge_icon_128.png $(prefix)/share/icons/hicolor/128x128/apps/com.github.dariasteam.cowsrevenge.png + +clean: + rm -rf build diff --git a/Scenes/Maps/map_8.tscn b/Scenes/Maps/map_8.tscn index ee9de26..cba3609 100644 --- a/Scenes/Maps/map_8.tscn +++ b/Scenes/Maps/map_8.tscn @@ -3387,7 +3387,6 @@ time = 1.0 [node name="fog_border" type="Sprite" parent="."] -visibility/visible = false visibility/light_mask = 14 transform/pos = Vector2( -190, -2570 ) transform/scale = Vector2( 114.865, 2.36304 ) diff --git a/Scenes/Menu/global.gd b/Scenes/Menu/global.gd index 6622fae..f3e2301 100644 --- a/Scenes/Menu/global.gd +++ b/Scenes/Menu/global.gd @@ -104,6 +104,4 @@ func load_game(): retro_effect = current_line["retro_effect"] - unlocked_levels = 100 - \ No newline at end of file diff --git a/Sprites/Effects/.darkness_border.png-autosave.kra b/Sprites/Effects/.darkness_border.png-autosave.kra deleted file mode 100644 index c1bc5c1..0000000 Binary files a/Sprites/Effects/.darkness_border.png-autosave.kra and /dev/null differ diff --git a/linux_build/Makefile b/linux_build/Makefile new file mode 100644 index 0000000..4a13d50 --- /dev/null +++ b/linux_build/Makefile @@ -0,0 +1,9 @@ +# Makefile: A standard Makefile for hello.c + +all: cowsrevenge + +install: + cp cowsrevenge /usr/local/bin/ + cp org.pipoypipagames.cowsrevenge.desktop /usr/share/applications + cp org.pipoypipagames.cowsrevenge.appdata.xml /usr/share/metainfo/ + cp cowsrevenge_icon.png /usr/share/icons/hicolor/64x64/apps/ diff --git a/linux_build/com.github.dariasteam.cowsrevenge.appdata.xml b/linux_build/com.github.dariasteam.cowsrevenge.appdata.xml new file mode 100644 index 0000000..fc4a229 --- /dev/null +++ b/linux_build/com.github.dariasteam.cowsrevenge.appdata.xml @@ -0,0 +1,105 @@ + + + + + + es + + + + es + en + + + com.github.dariasteam.cowsrevenge.desktop + + Cow's Revenge + Cow's Revenge + + Indie Platformer Pixel Art Game + Juego de plataformas indie con estética pixel art + + Pipo y Pipa Games + + +

+ You are a cow abducted and genetically improved by aliens which now have the + opportunity to rebel against livestock industry by freeing the encaged hens and + killing butchers. You used to be a regular cow raised as a dairy cow, but you + ain't that anymore. You have become better. You are... THE COWEST. +

+
+ + +

+ Eres una vaca que ha sido abducida y mejorada genéticamente por alienígenas que + ahora tiene la oprtunidad de rebelarse contra la industrica ganadera liberando a + las gallinas enjauladas y matando a los carniceros. Solías ser una vaca normal + y corriente criada como tal, pero esos tiempos quedaron atrás. + Ahora te has vuelto mejor. Ahora eres... THE COWEST. +

+
+ + CC0-1.0 + GPL-3.0 + + https://github.com/Dariasteam/Cows-Revenge/issues + https://pipoypipagames.itch.io/cows-revenge + + com.github.dariasteam.cowsrevenge + + + cowsrevenge + + + game + game + platform + 2D + pixelart + + + + + 8 Playable levels + + + + + + + XXX: Describe another screenshot + https://i.imgur.com/w2aFnSV.jpg + + + XXX: Describe the default screenshot + https://i.imgur.com/Ftj3Whe.png + + + + pipoypipagames@gmail.com + + + intense + intense + moderate + mild + none + none + none + none + none + none + mild + mild + none + none + none + none + none + none + none + none + + +
diff --git a/linux_build/com.github.dariasteam.cowsrevenge.desktop b/linux_build/com.github.dariasteam.cowsrevenge.desktop new file mode 100755 index 0000000..3822678 --- /dev/null +++ b/linux_build/com.github.dariasteam.cowsrevenge.desktop @@ -0,0 +1,8 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Name=Cow's Revenge +Exec=cowsrevenge +Icon=com.github.dariasteam.cowsrevenge +Type=Application +Categories=Game; +Comment=Indie Platformer Pixel Art Game diff --git a/linux_build/cowsrevenge_icon_128.png b/linux_build/cowsrevenge_icon_128.png new file mode 100644 index 0000000..9ff96bd Binary files /dev/null and b/linux_build/cowsrevenge_icon_128.png differ diff --git a/linux_build/cowsrevenge_icon_64.png b/linux_build/cowsrevenge_icon_64.png new file mode 100644 index 0000000..3205827 Binary files /dev/null and b/linux_build/cowsrevenge_icon_64.png differ