Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataKILO_5.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.TwistyKilominx;
14

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

    
17
public class MetadataKILO_5 extends Metadata
18
  {
19
  public static int INDEX = 41;
20
  public MetadataKILO_5()         { super( TwistyKilominx.class, new int[] {5,5,5,5,5,5}, 0, null, INDEX ); }
21
  public int numScrambles()       { return 33; }
22
  public int icon()               { return R.drawable.kilo_5; }
23
  public int price()              { return 80; }
24
  public int extrasJson()         { return R.raw.kilo_5_extras; }
25
  public int objectJson()         { return R.raw.kilo_5_object; }
26
  public int mesh()               { return R.raw.kilo_5; }
27
  public String getAuthor()       { return "David Gugl"; }
28
  public int getYearOfInvention() { return 2010; }
29
  public float getDifficulty()    { return 3.7f; }
30
  public String getObjectName()   { return "Master Kilominx"; }
31
  public int getCategory()        { return CATEGORY_SHAPE_DOD | CATEGORY_AXIS_FACE; }
32
  }
(55-55/96)