Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / metadata / MetadataBAN6_4.java @ 1eafa9c6

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

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

    
17
public class MetadataBAN6_4 extends Metadata
18
  {
19
  public static int INDEX = 16;
20
  public MetadataBAN6_4()         { super( TwistyBandagedCuboid.class, new int[] {4,4,4}, 0, TwistyBandagedCuboid.POS_6, INDEX ); }
21
  public int numScrambles()       { return 487; }
22
  public int icon()               { return R.drawable.ban6_4; }
23
  public int price()              { return 50; }
24
  public int extrasJson()         { return R.raw.ban6_4_extras; }
25
  public int objectJson()         { return R.raw.ban6_4_object; }
26
  public int mesh()               { return R.raw.ban6_4; }
27
  public String getAuthor()       { return "Unknown"; }
28
  public int getYearOfInvention() { return 2002; }
29
  public float getDifficulty()    { return 3.6f; }
30
  public String getObjectName()   { return "Burr Cube"; }
31
  public int getCategory()        { return CATEGORY_SHAPE_HEX | CATEGORY_AXIS_FACE | CATEGORY_BANDAGED; }
32
  }
(10-10/96)