Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCU_242.java @ 8d479e85

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.TwistyCuboid;
14

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

    
17
public class MetadataCU_242 extends Metadata
18
  {
19
  public static int INDEX = 86;
20
  public MetadataCU_242()         { super( TwistyCuboid.class, new int[] {2,4,2}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 21; }
22
  public int icon()               { return R.drawable.cu_242; }
23
  public boolean getActive()      { return false; }
24
  public int price()              { return 40; }
25
  public int objectVersion()      { return 2;  }
26
  public int extrasJson()         { return R.raw.cu_242_extras; }
27
  public int objectJson()         { return R.raw.cu_242_object; }
28
  public int mesh()               { return R.raw.cu_242; }
29
  public String getAuthor()       { return "Hidetoshi Takeji"; }
30
  public int getYearOfInvention() { return 2008; }
31
  public float getDifficulty()    { return 1.9f; }
32
  public String getObjectName()   { return "Rubik's Tower"; }
33
  public int getCategory()        { return CATEGORY_SHAPE_OTH | CATEGORY_AXIS_FACE | CATEGORY_CUBOID; }
34
  }
(33-33/96)