Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCU_323.java @ 8f5116ec

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_323 extends Metadata
18
  {
19
  public static int INDEX = 17;
20
  public MetadataCU_323()         { super( TwistyCuboid.class, new int[] {3,2,3}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 15; }
22
  public int icon()               { return R.drawable.cu_323; }
23
  public int price()              { return 40; }
24
  public int extrasJson()         { return R.raw.cu_323_extras; }
25
  public int objectJson()         { return R.raw.cu_323_object; }
26
  public int mesh()               { return R.raw.cu_323; }
27
  public String getAuthor()       { return "Unknown"; }
28
  public int getYearOfInvention() { return 0; }
29
  public float getDifficulty()    { return 2.1f; }
30
  public String getObjectName()   { return "Rubik's Domino"; }
31
  public int getCategory()        { return CATEGORY_SHAPE_OTH | CATEGORY_AXIS_FACE | CATEGORY_CUBOID; }
32
  }
(34-34/96)