Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terapagos does not retain the damage boost in Stellar form #5012

Closed
hedara90 opened this issue Jul 21, 2024 · 1 comment
Closed

Terapagos does not retain the damage boost in Stellar form #5012

hedara90 opened this issue Jul 21, 2024 · 1 comment
Labels
bug Bug category: battle-mechanic Pertains to battle mechanics status: unconfirmed This bug has not been reproduced yet

Comments

@hedara90
Copy link
Collaborator

Description

If Terapagos Terastalizes into its Stellar form, it should always have a 1.2x bonus damage to all non-Stellar moves.

Currently it loses the damage bonus like all other pokemon.
20240721_19h28m40s_grim

SINGLE_BATTLE_TEST("(TERA) Terapagos retains the Stellar type boost at all times")
{                                    
    s16 damage[2];                                     
    u32 move;                            
    PARAMETRIZE { move = MOVE_TACKLE; }                                                                                                       
    PARAMETRIZE { move = MOVE_MACH_PUNCH; }
    GIVEN {                            
        ASSUME(gMovesInfo[MOVE_TACKLE].type == TYPE_NORMAL);
        ASSUME(gMovesInfo[MOVE_MACH_PUNCH].type != TYPE_NORMAL);
        PLAYER(SPECIES_TERAPAGOS);
        OPPONENT(SPECIES_WOBBUFFET);
    } WHEN {
        TURN { MOVE(player, move, gimmick: GIMMICK_TERA); }
        TURN { MOVE(player, move); }
    } SCENE {
        HP_BAR(opponent, captureDamage: &damage[0]);
        HP_BAR(opponent, captureDamage: &damage[1]);
    } THEN {
        EXPECT_EQ(damage[0], damage[1]);
    }
}

Version

upcoming (Edge)

Upcoming/master Version

6264045

Discord contact info

hedara

@hedara90 hedara90 added bug Bug category: battle-mechanic Pertains to battle mechanics status: unconfirmed This bug has not been reproduced yet labels Jul 21, 2024
@AlexOn1ine
Copy link
Collaborator

#5020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Bug category: battle-mechanic Pertains to battle mechanics status: unconfirmed This bug has not been reproduced yet
Projects
None yet
Development

No branches or pull requests

2 participants