price we pay for propaganda

This commit is contained in:
2024-01-27 14:31:59 -05:00
parent 0b165a1338
commit e1460da157
6 changed files with 31 additions and 1935 deletions
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -250,7 +250,7 @@ WeaponPriceH ; weapons prices (tables with prices of weapons)
.by >price_Riot_Blast
.by >price_Riot_Bomb
.by >price_Heavy_Riot_Bomb
.by >price_Baby_Digger
.by >price_Propaganda
.by >price_Digger
.by >price_Heavy_Digger
.by >price_Sandhog
@@ -299,7 +299,7 @@ WeaponPriceL
.by <price_Riot_Blast
.by <price_Riot_Bomb
.by <price_Heavy_Riot_Bomb
.by <price_Baby_Digger
.by <price_Propaganda
.by <price_Digger
.by <price_Heavy_Digger
.by <price_Sandhog
@@ -355,7 +355,7 @@ WeaponUnits
.by 2 ;Riot_Blast ;_16
.by 5 ;Riot_Bomb ;_17
.by 2 ;Heavy_Riot_Bomb;_18
.by 10 ;Baby_Digger ;_19
.by 4 ;Propaganda ;_19
.by 5 ;Digger ;_20
.by 2 ;Heavy_Digger ;_21
.by 5 ;Sandhog ;_22
@@ -393,7 +393,7 @@ PurchaseMeTable ;weapons good to be purchased by the robot
; "Napalm ","Hot Napalm ","Tracer ","Smoke Tracer "
; "Baby Roller ","Roller ","Heavy Roller ","Riot Charge "
.by %11001110
; "Riot Blast ","Riot Bomb ","Heavy Riot Bomb ","Baby Digger "
; "Riot Blast ","Riot Bomb ","Heavy Riot Bomb ","Propaganda "
; "Digger ","Heavy Digger ","Sandhog ","Heavy Sandhog "
.by %00000000
; "Dirt Clod ","Dirt Ball ","Ton of Dirt ","Liquid Dirt "
@@ -414,7 +414,7 @@ PurchaseMeTable2 ;weapons good to be purchased by the robot (Cyborg)
; "Napalm ","Hot Napalm ","Tracer ","Smoke Tracer "
; "Baby Roller ","Roller ","Heavy Roller ","Riot Charge "
.by %01000000
; "Riot Blast ","Riot Bomb ","Heavy Riot Bomb ","Baby Digger "
; "Riot Blast ","Riot Bomb ","Heavy Riot Bomb ","Propaganda "
; "Digger ","Heavy Digger ","Sandhog ","Heavy Sandhog "
.by %00000000
; "Dirt Clod ","Dirt Ball ","Ton of Dirt ","Liquid Dirt "
@@ -449,7 +449,7 @@ WeaponSymbols
.by $50 ;ind_Riot_Blast ;_16
.by $51 ;ind_Riot_Bomb ;_17
.by $52 ;ind_Heavy_Riot_Bomb ;_18
.by $53 ;ind_Baby_Digger ;_19
.by $53 ;ind_Propaganda ;_19
.by $54 ;ind_Digger ;_20
.by $55 ;ind_Heavy_Digger ;_21
.by $57 ;ind_Sandhog ;_22
@@ -556,7 +556,7 @@ weaponsOfDeath ; weapons used in tank death animations
dta ind_Hot_Napalm ; why not?
dta ind_Riot_Bomb
dta ind_Heavy_Riot_Bomb
dta ind_Baby_Digger
dta ind_Propaganda
dta ind_Digger
dta ind_Heavy_Digger
dta ind_Sandhog
@@ -672,7 +672,7 @@ CreditsEnd
.IF TARGET = 800
CreditsLines=39 + 7 ; add 7 for scrollout
.ELIF TARGET = 5200
CreditsLines=33 + 7; add 7 for scrollout
CreditsLines=33 + 7 ; add 7 for scrollout
.ENDIF
.IF TARGET = 5200
+2 -2
View File
@@ -69,7 +69,7 @@ price_Riot_Charge = 230 ;_15
price_Riot_Blast = 241 ;_16
price_Riot_Bomb = 259 ;_17
price_Heavy_Riot_Bomb = 272 ;_18
price_Baby_Digger = 136 ;_19
price_Propaganda = 234 ;_19
price_Digger = 176 ;_20
price_Heavy_Digger = 207 ;_21
price_Sandhog = 191 ;_22
@@ -119,7 +119,7 @@ ind_Riot_Charge = 15
ind_Riot_Blast = 16
ind_Riot_Bomb = 17
ind_Heavy_Riot_Bomb = 18
ind_Baby_Digger = 19
ind_Propaganda = 19
ind_Digger = 20
ind_Heavy_Digger = 21
ind_Sandhog = 22
+20 -12
View File
@@ -6,26 +6,34 @@
;Warsaw 2000, 2001, 2002, 2003, 2009, 2012, 2013
;Miami & Warsaw 2022, 2023
;WARNING! requires mads compiled on 2023-09-13 or later
;WUDSN run settings:
;atari800 -5200 -cart ${outputFilePath} -cart-type 4
;atari800 -run ${outputFilePath}
;WARNING! requires mads compiled on 2023-09-13 or later
;compilation:
;mads scorch.asm -o:scorch.bin -d:TARGET=5200
;mads scorch.asm -o:scorch.xex -d:TARGET=800
;mads scorch.asm -o:scorch.xex -d:TARGET=800 -d:SPLASH=1 #xex version with splash
;mads scorch.asm -o:scorch.xex -d:TARGET=800 -d:SPLASH=1 -d:CART_VERSION=1 #xex version for cart
;---------------------------------------------------
.IFNDEF TARGET
.def TARGET = 800 ; 5200
.ENDIF
;---------------------------------------------------
.def SPLASH = 0
; if 0 - no splash screens
.def CART_VERSION = 0
; if 1 - dual splash screen
.def METEORS = 1
; if 1 - meteors on game
.def XCORRECTION_FOR_PM = 0
; if 1 - active x position of tanks correction fo PMG
.def FASTER_GRAF_PROCS = 1
; if 1 - activates faster graphics routines
; (direct writes to screen memory - atari only :) )
.ifndef SPLASH
.def SPLASH = 0 ; if 0 - no splash screens
.endif
.ifndef CART_VERSION
.def CART_VERSION = 0 ; if 1 - dual splash screen
.endif
.def METEORS = 1 ; if 1 - meteors on game
.def XCORRECTION_FOR_PM = 0 ; if 1 - active x position of tanks correction fo PMG
.def FASTER_GRAF_PROCS = 1 ; if 1 - activates faster graphics routines
; (direct writes to screen memory - atari only :) )
;---------------------------------------------------
OPT r+ ; saves 10 bytes, and probably works :) https://github.com/tebe6502/Mad-Assembler/issues/10
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -41,7 +41,7 @@ ExplosionRoutines
.word riotblast-1 ;Riot_Blast ;_16
.word riotbomb-1 ;Riot_Bomb ;_17
.word heavyriotbomb-1 ;Heavy_Riot_Bomb;_18
.word propaganda-1 ;Baby_Digger ;_19
.word propaganda-1 ;Propaganda ;_19
.word digger-1 ;Digger ;_20
.word heavydigger-1 ;Heavy_Digger ;_21
.word sandhog-1 ;Sandhog ;_22