Project

General

Profile

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

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

1

    
2
///////////////////////////////////////////////////////////////////////////////////////////////////
3
// Copyright 2023 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.TwistyMirror;
15

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

    
18
public class MetadataMIRR_4 extends Metadata
19
  {
20
  public static int INDEX = 67;
21
  public MetadataMIRR_4()         { super( TwistyMirror.class, new int[] {4,4,4}, 0, null, INDEX ); }
22
  public int numScrambles()       { return 24; }
23
  public int icon()               { return R.drawable.mirr_4; }
24
  public int price()              { return 60; }
25
  public int extrasJson()         { return R.raw.mirr_4_extras; }
26
  public int objectJson()         { return R.raw.mirr_4_object; }
27
  public int mesh()               { return R.raw.mirr_4; }
28
  public String getAuthor()       { return "Traiphum Prungtaengkit"; }
29
  public int getYearOfInvention() { return 2014; }
30
  public float getDifficulty()    { return 3.55f; }
31
  public String getObjectName()   { return "Master Mirror Blocks"; }
32
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_FACE | CATEGORY_MIRROR; }
33
  }
(62-62/97)