Skip to content

Commit

Permalink
properly make quote less hacky
Browse files Browse the repository at this point in the history
  • Loading branch information
HisuianZoroark committed Feb 18, 2024
1 parent 240445e commit d5a7118
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion data/mods/gen9ssb/conditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,21 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
if (this.randomChance(2, 100)) {
this.add(`c:|${getName('aegii')}|...right, I was saying in SSB4 to "stan loona", but this has to be changed now that we've found out that the company managing loona is shady af. I would like to amend that to "stan the individual members of loona" (or if you want, you can choose to stan any other group of your choice!)`);
} else {
this.add(`c:|${getName('aegii')}|~yes ${pokemon.side.active[0]}`);
pokemon.side.addSlotCondition(pokemon, 'aegiibpmsg');
}
},
onFaint() {
this.add(`c:|${getName('aegii')}|nerd`);
},
},
aegiibpmsg: {
onSwap(target, source) {
if (!target.fainted) {
this.add(`c:|${getName('aegii')}|~yes ${target.name}`);
target.side.removeSlotCondition(target, 'aegiibpmsg');
}
},
},
aelita: {
noCopy: true,
onStart() {
Expand Down

0 comments on commit d5a7118

Please sign in to comment.