Pet Mod Z-Revival

I was waiting for this one excitedly, then forgot to post what I had been waiting for.

Move Name: Super Stormshards
User: Lycanroc (All)
Category: Physical
Type: Rock
BP: 100
Accuracy: 100%
Max PP: 5
Effects: Users takes damage equal to 1/10 of its HP if hazards or terrain are up and removes the hazards and terrain. Rock and Ground types are immune to this move.
Attributes: Makes Contact.

I wanted to do something unique, essentially, while also giving Lycanroc a powerful nuking move and utility. I figured the original effect had to go on it so I decided making some Pokemon immune to it was an interesting idea.
 

charizard8888

Catch The Wave
is a Forum Moderator Alumnus

Move Name: Splintered Shards
User: Lycanroc (All)
Category: Physical
Type: Rock
BP: 50
Accuracy: 100%
Max PP: 12
Effects: Hits Twice
Attributes: Contact
Reasoning: Shards hit at the foe helpful to break Sash/Sturdy/Substitute


Move Name: Spark Surfer
User: Raichu-Alola
Category: Special
Type: Electric
BP: 90
Accuracy: 100%
Max PP: 16
Effects: Gives Magnet Rise effect to the user for the next turn
Attributes:
Reasoning: Helps with Raichu's weakness for the opponent's next switch in
 
alright i've put this off for long enough, its time for voting to begin

Raichu-Alola
-Squawkerz's Spark Surf
-charizard8888's Spark Surfer

Lycanroc (All forms)
-lolgod3's Stormshard Slash
-cordeliafrey78's Super Stormshards
-charizard8888's Splintered Shards

for the next three, vote yes or no for each move since there is only one option

Snorlax
-Squawkerz's Pancake Press

Mimikyu
-Squawkerz's Cover Up

Mew
-Squawkerz's Genesis Nova


My Votes
Raichu-Alola: Squawkerz
Lycanroc: lolgod3
Snorlax: Yes
Mimikyu: Yes
Mew: Yes

voting closes in a week or whenever I feel there is enough votes
 
I was a little bit off, but here we go!

charizard8888 wins Raichu-Alola, lolgod3 wins Lycanroc, and my Mew, Snorlax, and Mimikyu all got voted in.


Now presenting the next (and hopefully final) slate!

(since Ultra Necrozma doesn't exist)
Category: Special
Type: Psychic
BP: 200
Effect: Ignores Abilities, Physical if the user's attack is higher than it's Special Attack


the moves below are for flavor only, since the users are banned


Category: Physical
Type: Steel
BP: 200
Effect: Ignores Abilities



Category: Special
Type: Ghost
BP: 200
Effect: Ignores Abilities


note: Necrozma-Dusk Mane will learn both the Solgaleo move and the Necrozma move, Necrozma-Dawn Wings will learn both the Lunala move and the Necrozma move, and base Necrozma will only learn it's move.


Category: Physical
Type: Ghost
BP: 195
Effect: N/A



The most important of the four is the base Necrozma move. Try to submit that move before you submit any others.

submissions will close in around a week
 
Last edited:
Move Name: 7-Star Strike
User: Marshadow
Category: Physical
Type: Ghost
BP: 10
Accuracy: 100
Max PP: 5/8
Effects: Hits 7 times. +5 BP for each boost the user has, but clears user's boosts after the move is used.
Attributes: Contact
Reasoning: 7 hits comes from the name, boosts thing is to contrast and synergize with Spectral Thief.
 
Move Name: Photon Storm
User: Necrozma
Category: Special
Type: Psychic
BP: 75
Accuracy: 100%
Max PP: 8
Effects: Is Physical if the user's higher offensive stat is Attack, raises the user's higher offensive stat by 1 stage, ignores abilities. Boosts a maximum of 3 times when Necrozma is out, counter resets upon switching out.
Attributes: None
Reasoning: Allows Necrozma to set up while still dealing a good chunk of damage, allowing it to use a slot that would've been used on Calm Mind or Dragon Dance for additional coverage.
 

Move Name: Burning Light
User: Necrozma
Category: Special
Type: Psychic
BP: 80
Accuracy: 100%
Max PP: 24
Effects: Physical when Attack>Special Attack. Hits Dark types Super Effectively
Attributes: N/A
Reasoning: A clone of Freeze Dry. With Prism Armor, it forces out Dark types that would normally beat it.


Move Name: Moonlight Maelstrom
User: Lunala
Category: Special
Type: Ghost
BP: 80
Accuracy: 100%
Max PP: 24
Effects: Hits Dark types effectively.
Attributes: N/A
Reasoning: Another Clone of Freeze Dry. Allows Lunala & Necrozma-Dawn-Wings to hit the Dark types that normally switch in on it.


Move Name: Sunlight Smash
User: Solgaleo
Category: Physical
Type: Steel
BP: 80
Accuracy: 100%
Max PP: 24
Effects: Hits Dark types Super Effectively.
Attributes: N/A
Reasoning: Clone of Freeze Dry. Allows Solgaleo & Necrozma-Dusk-Mane to hit the Dark types that would normally switch in on it.
 
Last edited:
time to vote!

Necrozma
-Adou's Photon Storm
-Squawkerz's Burning Light

like last slate, vote yes or no for the next three

Solgaleo
-Squawkerz's Sunlight Smash

Lunala
-Squawkerz's Moonlight Maelstrom

Marshadow
-Pika Xreme's 7-Star Strike


my votes
Necrozma: Squawkerz
Solgaleo: Yes
Lunala: Yes
Marshadow: Yes

votes should close in around a week
 
Any way this can be revived as a sort of "Z-Revival for Everyone" concept where Z-Revival moves are given to select Pokemon? I'd love to see some new signature Z-Moves and Z-Revival moves.
 

charizard8888

Catch The Wave
is a Forum Moderator Alumnus
Coders have probably been busy for some time now (My PC is broken too). Here's a small guide if anyone wants to practice coding the 19 moves.

This is the basic structure of moves.ts for coding moves, you can easily understand it yourself with an example


Code:
movenamexd : {
basePower: 100,
accuracy: 90,
category: "Physical/Special/Status",
shortDesc: "Description of the effect",
id: "movenamexd ",
name: "Move Name-XD",
pp: 15,
priority: 1,
flags: {protect: 1, mirror: 1},
target: "normal",
type: "Fire",
},
basePower: 0 for status moves

This is the basic structure of moves
If you want to code a move with a specific effect, check the move with the closest effect in the code
For example if you want a move with 25% burn chance then look up Ctrl + F: "Flamethrower" and copy and make the necessary chances.

Moves File:
https://raw.githubusercontent.com/Scoopapa/DH/master/data/moves.ts

You can save all the code in one place and may leave the effects of the moves which you are unable to code on your own and need help.

Steps
1 Find an existing move similar to the submitted move. Copy the code.
2 Change the name and make other necessary changes.

Spreadsheet: https://docs.google.com/spreadsheets/u/0/d/1XT6c8mcez93-t6IJJ0RnOMClO-dVJueMJ-YufiuFt2Q/htmlview
 

Users Who Are Viewing This Thread (Users: 1, Guests: 0)

Top