Package monopoly.model.gamefield

Examples of monopoly.model.gamefield.EmptyCell


     * @param playerCount количество игроков.
     */
    public void start(int playerCount) {
        _field.clear();

        _field.addCell(new EmptyCell());
        _field.addCell(new CompanyCell(
                "Bacardi", 16000, (int) (16000 * 0.6), 3500));
        _field.addCell(new PenaltyCell());
        _field.addCell(new CompanyCell(
                "Smirnoff", 16000, (int) (16000 * 0.6), 2500));
        _field.addCell(new PenaltyCell());
        _field.addCell(new CompanyCell(
                "Absolut Vodka", 16000, (int) (16000 * 0.6), 4000));
        _field.addCell(new GiftCell());
        _field.addCell(new CompanyCell(
                "Microsoft", 88000, (int) (88000 * 0.6), 38000));
        _field.addCell(new CompanyCell(
                "Marlboro", 20000, (int) (20000 * 0.6), 1500));
        _field.addCell(new EmptyCell());
        _field.addCell(new CompanyCell(
                "Kent", 20000, (int) (20000 * 0.6), 1500));
        _field.addCell(new CompanyCell(
                "Parlament", 20000, (int) (20000 * 0.6), 2000));
        _field.addCell(new CompanyCell(
                "Nike", 28000, (int) (28000 * 0.6), 4000));
        _field.addCell(new CompanyCell(
                "Adidas", 28000, (int) (28000 * 0.6), 6300));
        _field.addCell(new CompanyCell(
                "Puma", 28000, (int) (28000 * 0.6), 4900));
        _field.addCell(new GiftCell());
        _field.addCell(new CompanyCell(
                "IBM", 50000, (int) (50000 * 0.6), 15900));
        _field.addCell(new CompanyCell(
                "Scania", 35000, (int) (35000 * 0.6), 10000));
        _field.addCell(new EmptyCell());
        _field.addCell(new CompanyCell(
                "Man", 40000, (int) (40000 * 0.6), 12000));
        _field.addCell(new GiftCell());
        _field.addCell(new CompanyCell(
                "Nokia", 48000, (int) (48000 * 0.6), 16000));
View Full Code Here

TOP

Related Classes of monopoly.model.gamefield.EmptyCell

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.