Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCHES_2.java @ 09d5cf2b

1

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

    
11
package org.distorted.objectlib.metadata;
12

    
13
import org.distorted.objectlib.R;
14
import org.distorted.objectlib.objects.TwistyCheese;
15

    
16
///////////////////////////////////////////////////////////////////////////////////////////////////
17

    
18
public class MetadataCHES_2 extends Metadata
19
  {
20
  public static int INDEX = 92;
21
  public MetadataCHES_2()         { super( TwistyCheese.class, new int[] {2,2,2,2}, 0, null, INDEX ); }
22
  public int numScrambles()       { return 15; }
23
  public int icon()               { return R.drawable.dske_3; }
24
  public boolean getActive()      { return false; }
25
  public int price()              { return 50; }
26
  public int extrasJson()         { return 0; }
27
  public int objectJson()         { return 0; }
28
  public int mesh()               { return 0; }
29
  public String getAuthor()       { return "Anthony Greenhill"; }
30
  public int getYearOfInvention() { return 2002; }
31
  public float getDifficulty()    { return 1.1f; }
32
  public String getObjectName()   { return "Rubik Cheese"; }
33
  public int getCategory()        { return CATEGORY_SHAPE_BAR | CATEGORY_AXIS_OTHE; }
34
  }
(12-12/97)