This commit is contained in:
tildearrow 2024-06-01 03:39:52 -05:00
parent 7597a7ea75
commit e2743e98b0
20 changed files with 128873 additions and 128593 deletions

15706
po/de.po

File diff suppressed because it is too large Load diff

16284
po/es.po

File diff suppressed because it is too large Load diff

15706
po/fi.po

File diff suppressed because it is too large Load diff

15706
po/fr.po

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

15706
po/hy.po

File diff suppressed because it is too large Load diff

15700
po/ko.po

File diff suppressed because it is too large Load diff

Binary file not shown.

15706
po/nl.po

File diff suppressed because it is too large Load diff

16350
po/pl.po

File diff suppressed because it is too large Load diff

16268
po/pt_BR.po

File diff suppressed because it is too large Load diff

16330
po/ru.po

File diff suppressed because it is too large Load diff

15758
po/sk.po

File diff suppressed because it is too large Load diff

16222
po/sv.po

File diff suppressed because it is too large Load diff

15760
po/th.po

File diff suppressed because it is too large Load diff

15706
po/tr.po

File diff suppressed because it is too large Load diff

15716
po/uk.po

File diff suppressed because it is too large Load diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 21 KiB

File diff suppressed because it is too large Load diff

View file

@ -392,6 +392,8 @@ struct FurnaceCV {
short lastPlayerX, lastPlayerY;
short fxChanBase, fxInsBase;
FixedQueue<unsigned char,16> weaponStack;
// graphics
unsigned short tile0[56][80];
unsigned short tile1[56][80];
@ -1630,7 +1632,12 @@ void FurnaceCVPlayer::collision(FurnaceCVObject* other) {
if (!invincible) {
dead=true;
cv->respawnTime=48;
if (cv->weaponStack.empty()) {
cv->shotType=0;
} else {
cv->shotType=cv->weaponStack.front();
cv->weaponStack.pop_front();
}
cv->soundEffect(SE_DEATH_C1);
cv->soundEffect(SE_DEATH_C2);
cv->createObject<FurnaceCVExplMedium>(x-8,y);
@ -2093,7 +2100,7 @@ void FurnaceCVEnemy1::collision(FurnaceCVObject* other) {
if (other->type==CV_BULLET || other->type==CV_PLAYER) {
if (--health<=0) {
dead=true;
if ((rand()%7)==0) {
if ((rand()%7)==0 || (enemyType>1 && (rand()%7)==3)) {
switch (rand()%10) {
case 0:
cv->createObject<FurnaceCVExtraLife>(x+(enemyType>=2?8:0),y+(enemyType>=2?8:0));
@ -2782,6 +2789,9 @@ void FurnaceCVMine::collision(FurnaceCVObject* other) {
void FurnaceCVPowerupP::collision(FurnaceCVObject* other) {
if (other->type==CV_PLAYER) {
dead=true;
if (cv->shotType) {
cv->weaponStack.push_front(cv->shotType);
}
cv->shotType=1;
cv->soundEffect(SE_PICKUP2);
cv->addScore(200);
@ -2809,6 +2819,9 @@ void FurnaceCVPowerupP::tick() {
void FurnaceCVPowerupS::collision(FurnaceCVObject* other) {
if (other->type==CV_PLAYER) {
dead=true;
if (cv->shotType) {
cv->weaponStack.push_front(cv->shotType);
}
cv->shotType=2;
cv->soundEffect(SE_PICKUP2);
cv->addScore(200);