aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PotatoTile.cpp
blob: 872622ba988041a927fb677b93347f96e6314ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "stdafx.h"
#include "net.minecraft.world.item.h"
#include "net.minecraft.world.level.h"
#include "net.minecraft.world.h"
#include "PotatoTile.h"

PotatoTile::PotatoTile(int id) : CropTile(id)
{
}

Icon *PotatoTile::getTexture(int face, int data)
{
	if (data < 7)
	{
		if (data == 6)
		{
			data = 5;
		}
		return icons[data >> 1];
	}
	else
	{
		return icons[3];
	}
}

int PotatoTile::getBaseSeedId()
{
	return Item::potato_Id;
}

int PotatoTile::getBasePlantId()
{
	return Item::potato_Id;
}

void PotatoTile::spawnResources(Level *level, int x, int y, int z, int data, float odds, int playerBonus)
{
	CropTile::spawnResources(level, x, y, z, data, odds, playerBonus);

	if (level->isClientSide)
	{
		return;
	}
	if (data >= 7)
	{
		if (level->random->nextInt(50) == 0)
		{
			popResource(level, x, y, z, shared_ptr<ItemInstance>(new ItemInstance(Item::potatoPoisonous)));
		}
	}
}

void PotatoTile::registerIcons(IconRegister *iconRegister)
{
	for (int i = 0; i < 4; i++)
	{
		icons[i] = iconRegister->registerIcon(getIconName() + L"_stage_" + std::to_wstring(i) );
	}
}