Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
ethangarsia517 committed Dec 3, 2023
1 parent 94108fe commit bd7193e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/kirby/acmd/specials.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ use {
smash_script::*
};

use crate::vars::FIGHTER_KIRBY_GENERATE_ARTICLE_FIREBALL;
use crate::vars::FIGHTER_KIRBY_GENERATE_ARTICLE_EXPLOSIVEFLAME;
use crate::vars::FIGHTER_KIRBY_GENERATE_ARTICLE_EXPLOSIVEFLAME_RESERVE;
use crate::vars::FIGHTER_KIRBY_GENERATE_ARTICLE_REFLECTIONBOARD;
use crate::vars::FIGHTER_KIRBY_GENERATE_ARTICLE_FIREBALL;


unsafe extern "C" fn kirby_attacks3(agent: &mut L2CAgentBase) {
Expand Down
2 changes: 1 addition & 1 deletion src/kirby/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ pub fn install() {
acmd::install(agent);
agent.install();

smashline::clone_weapon("palutena", "explosiveflame", "kirby", "explosiveflame",true);
smashline::clone_weapon("mario", "fireball", "kirby", "fireball",true);
smashline::clone_weapon("palutena", "explosiveflame", "kirby", "explosiveflame",true);
smashline::clone_weapon("palutena", "explosiveflame_reserve", "kirby", "explosiveflame_reserve",true);
smashline::clone_weapon("palutena", "reflectionboard", "kirby", "reflectionboard",true);
}
7 changes: 4 additions & 3 deletions src/vars.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_EXPLOSIVEFLAME: i32 = 40;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_REFLECTIONBOARD: i32 = 41;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_FIREBALL: i32 = 42;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_FIREBALL: i32 = 40;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_EXPLOSIVEFLAME: i32 = 41;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_EXPLOSIVEFLAME_RESERVE: i32 = 42;
pub const FIGHTER_KIRBY_GENERATE_ARTICLE_REFLECTIONBOARD: i32 = 43;

0 comments on commit bd7193e

Please sign in to comment.