Project

General

Profile

Download (1.92 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataBALL_4.java @ ade99032

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2023 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is proprietary software licensed under an EULA which you should have received      //
7
// along with the code. If not, check https://distorted.org/magic/License-Magic-Cube.html        //
8
///////////////////////////////////////////////////////////////////////////////////////////////////
9

    
10
package org.distorted.objectlib.metadata;
11

    
12
import org.distorted.objectlib.R;
13
import org.distorted.objectlib.objects.TwistyMasterball;
14

    
15
///////////////////////////////////////////////////////////////////////////////////////////////////
16

    
17
public class MetadataBALL_4 extends Metadata
18
  {
19
  public static int INDEX = 51;
20
  public MetadataBALL_4()         { super( TwistyMasterball.class, new int[] {4,2,2,2,2}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 28; }
22
  public int icon()               { return R.drawable.ball_4; }
23
  public int price()              { return 70; }
24
  public int extrasJson()         { return R.raw.ball_4_extras; }
25
  public int objectJson()         { return R.raw.ball_4_object; }
26
  public int mesh()               { return R.raw.ball_4; }
27
  public String getAuthor()       { return "Geza Gyovai"; }
28
  public int getYearOfInvention() { return 1992; }
29
  public float getDifficulty()    { return 2.005f; }
30
  public String getObjectName()   { return "Masterball"; }
31
  public boolean supportsAdjustableStickerColors()  { return false; }
32
  public int getCategory()        { return CATEGORY_SHAPE_BAL | CATEGORY_AXIS_OTHE; }
33
  }
(4-4/96)