Function mkproj_lib::rules::terms[][src]

pub fn terms()

This describes the various terms in Phaktionz

pub fn terms() {
let keywords:[String; 11] = [ //Contains all keywords which is iterated through
    String::from("Summons: Units that battle in the battlefield"),
    String::from("Invocations: Sorcery that may be cast to gain benefit"),
    String::from("Abled: The position in which a unit may battle"),
    String::from("Disabled: The position in which a unit is unable to battle (This is done with your Summon being sideways)"),
    String::from("Demote: To have a summon leave the battlefield"),
    String::from("Exile: To remove from play a summon"),
    String::from("Tiers: Represents the rank of a summon, Tier 1 being the lowest and 3 the highest"),
    String::from("DMG: The amount of cards a summon can deal an opponent to lose"),
    String::from("Fizzle: To stop an opponent's play"),
    String::from("L/x: Limit x per turn"),
    String::from("Lx: Limit x per match")
];
     for i in 0..keywords.len() {
         println!("\t{}", keywords[i]);
     }  
}