Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataCRA1_3.java @ baa031e2

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

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

    
17
public class MetadataCRA1_3 extends Metadata
18
  {
19
  public static int INDEX = 56;
20
  public MetadataCRA1_3()         { super( TwistyCrazy3x3.class, new int[] {3,3,3}, TwistyCrazy3x3.CRAZY, null, INDEX ); }
21
  public int numScrambles()       { return 22; }
22
  public int icon()               { return R.drawable.cra1_3; }
23
  public int price()              { return 50; }
24
  public int extrasJson()         { return R.raw.cra1_3_extras; }
25
  public int objectJson()         { return R.raw.cra1_3_object; }
26
  public int mesh()               { return R.raw.craz_3; }
27
  public String getInventor()     { return "Aleh Hladzilin"; }
28
  public int getYearOfInvention() { return 2008; }
29
  public float getComplexity()    { return 2.88f; }
30
  public String getObjectName()   { return "Circle 3x3"; }
31
  }
(16-16/92)