How to create a Great Wolf "red" variant

The place to post your WML questions and answers.

Moderator: Forum Moderators

Forum rules
  • Please use [code] BBCode tags in your posts for embedding WML snippets.
  • To keep your code readable so that others can easily help you, make sure to indent it following our conventions.
Post Reply
User avatar
The_Gnat
Posts: 2217
Joined: October 10th, 2016, 3:06 am
Contact:

How to create a Great Wolf "red" variant

Post by The_Gnat »

A very simple question that I would assume has an easy answer. :D Here is my great wolf:

Code: Select all

{GENERIC_UNIT 2 (Great Wolf) $You.x $You.x} 
And now I want it to be the red variant type (that is included in the Wolf_Great.cfg file). Is there a way to do this?
User avatar
josteph
Inactive Developer
Posts: 741
Joined: August 19th, 2017, 6:58 pm

Re: How to create a Great Wolf "red" variant

Post by josteph »

Just this?

Code: Select all

        {GENERIC_UNIT 1 (Great Wolf) 14 8}
        [+unit]
            variation=red
        [/unit]
User avatar
The_Gnat
Posts: 2217
Joined: October 10th, 2016, 3:06 am
Contact:

Re: How to create a Great Wolf "red" variant

Post by The_Gnat »

josteph wrote: December 16th, 2018, 1:09 am Just this?
:D :D :D Awesome!! I knew it would be easy.
Post Reply