Update for massive overhaul

This commit is contained in:
William Moore 2022-07-21 05:40:04 -05:00
parent 39291ae513
commit 2d5a01548e
5 changed files with 21 additions and 19 deletions

7
.gitignore vendored
View File

@ -6,4 +6,9 @@
build/
dist/
.vscode/
Release/
Release/
Index/
*.plist
*.blurb
*.iFiction
gametext.txt

View File

@ -1,7 +0,0 @@
author "Masterful Interactions"
copyright "(c) Masterful Interactions 2022"
storyfile "ButteredToast1.ulx" include
cover "./cover.jpeg"
picture 1 "./cover.jpeg"

View File

@ -12,7 +12,11 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. ]
"Buttered Toast: the Interactive Fiction Starring Billy Davis" by "Masterful Interactions"
"Buttered Toast" by "Masterful Interactions".
The story headline is "the Interactive Fiction Starring Billy Davis".
The story description is "You are Billy Davis and you need to lead Chung Ho to San Francisco. However, can you keep him safe from the legendary Possum Crotch?".
Release along with cover art.
The release number is 2.
Asking someone about something is speech. Telling someone about something is speech. Answering someone that something is speech. Asking someone for something is speech.

View File

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

@ -4,22 +4,22 @@ INFORM6 := $(INFORM)/inform6/Tangled/inform6
INBLORB := $(INFORM)/inblorb/Tangled/inblorb
BUILDDIR := build
DISTDIR := dist
SRCDIR := src
TARGET := ButteredToast1
SRCDIR := .
TARGET := ButteredToast
PROJDIR := $(SRCDIR)/$(TARGET).inform
SRCS := $(wildcard $(SRCDIR)/*.inform)
I6S := $(patsubst %.inform,%.i6,$(SRCS))
SRCS := $(wildcard $(PROJDIR)/Source/*.ni)
I6S := $(patsubst %.ni,%.i6,$(SRCS))
all: $(TARGET)
$(INBLORB) ButteredToast.blurb ButteredToast.gblorb
$(INBLORB) $(PROJDIR)/Release.blurb $(SRCDIR)/$(TARGET).gblorb
$(TARGET): $(I6S)
$(INFORM6) -E2w~S~DG $<
$(INFORM6) -E2w~S~DG $(PROJDIR)/Build/auto.inf $(PROJDIR)/Build/output.ulx
%.i6: %.inform
$(INFORM7) $(ARGS) $<
%.i6: %.ni
$(INFORM7) -project "$(PROJDIR)" $(ARGS)
clean:
- rm $(SRCDIR)/*.i6
- rm -rf $(PROJDIR)/Build
- rm *.gblorb
- rm *.ulx