Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCU_424.java @ 3a0990b1

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_424 extends Metadata
18
  {
19
  public static int INDEX = 87;
20
  public MetadataCU_424()         { super( TwistyCuboid.class, new int[] {4,2,4}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 27; }
22
  public int icon()               { return R.drawable.cu_424; }
23
  public boolean getActive()      { return false; }
24
  public int price()              { return 40; }
25
  public int extrasJson()         { return R.raw.cu_424_extras; }
26
  public int objectJson()         { return R.raw.cu_424_object; }
27
  public int mesh()               { return R.raw.cu_424; }
28
  public String getAuthor()       { return "Ola Jansson"; }
29
  public int getYearOfInvention() { return 2011; }
30
  public float getDifficulty()    { return 2.4f; }
31
  public String getObjectName()   { return "2x4x4 cuboid"; }
32
  public int getCategory()        { return CATEGORY_SHAPE_OTH | CATEGORY_AXIS_FACE | CATEGORY_CUBOID; }
33
  }
(36-36/96)