Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Be crafty.png

Build 42 unstable is out now!

The wiki has already begun updating. Please be patient during the transition.
Help us by contributing to the build 42 update project.
The Project Zomboid Map Project will not be updated until at least January, in the meantime use B42 Map.

404SpiffoMascotMap.png

Fountain Cup

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Parts of this page may have been automatically updated to the latest build (42.0.2).
For the build 41.78.16 article, please see the old revision.
Fountain Cup
FountainCup Model.png
General
Category
Water Container
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Container name
Fountain Cup
Properties
Fluid capacity
300mLmL
Rain factor
0.5
Technical
Item ID
Base.FountainCup

A fountain cup is an item that can be found in the world.

Usage

It is currently considered a junk item, and has no use. Its primary purpose is adding item diversity and realism for the player when looting, or for decoration.

Despite being a cup, it cannot be used to collect water.

Location

The loot distributions can be found in the table(s) below.

FountainCup distributionShow / Hide

Effective chance calculations are based off of default 'apocalypse' loot settings, with no luck modifier, and average zombie density. The higher the density of zombies in an area, the higher the effective chance of an item spawning. Chance is also influenced by the lucky and unlucky traits. Duplicate entries do exist, but have been removed for clarity.

Containers
Building/Room Container Effective chance
arenakitchen counter 76.71%
arenakitchen counter 41.46%
derelict other 2.93%
jayschicken_dining bin 76.71%
jayschicken_dining bin 41.46%
jayschicken_dining cardboardbox 76.71%
jayschicken_dining cardboardbox 41.46%
jayschicken_dining cardboardbox 23.67%
jayschicken_dining counter 41.46%
jayschicken_dining counter 23.67%
jayschicken_dining crate 76.71%
jayschicken_dining crate 41.46%
jayschicken_dining crate 23.67%
jayschicken_dining smallbox 76.71%
jayschicken_dining smallbox 41.46%
jayschicken_dining smallbox 23.67%
jayschicken_kitchen bin 76.71%
jayschicken_kitchen bin 41.46%
jayschicken_kitchen counter 76.71%
jayschicken_kitchen counter 41.46%
jayschicken_kitchen counter 23.67%
jayschicken_kitchen smallbox 76.71%
jayschicken_kitchen smallbox 41.46%
jayschicken_kitchen smallbox 23.67%
livingroom sidetable 3.28%
mexicankitchen counter 76.71%
mexicankitchen counter 41.46%
mexicankitchen counter 23.67%
motelroomoccupied bin 11.21%
pileocrepe bin 76.71%
pileocrepe bin 41.46%
pizzakitchen counter 76.71%
pizzakitchen counter 41.46%
pizzakitchen counter 23.67%
seafoodkitchen counter 76.71%
seafoodkitchen counter 41.46%
seafoodkitchen counter 23.67%
spiffo_dining bin 76.71%
spiffo_dining bin 41.46%
spiffo_dining cardboardbox 76.71%
spiffo_dining cardboardbox 41.46%
spiffo_dining cardboardbox 23.67%
spiffo_dining counter 41.46%
spiffo_dining counter 23.67%
spiffo_dining crate 76.71%
spiffo_dining crate 41.46%
spiffo_dining crate 23.67%
spiffo_dining smallbox 76.71%
spiffo_dining smallbox 41.46%
spiffo_dining smallbox 23.67%
spiffoskitchen bin 76.71%
spiffoskitchen bin 41.46%
spiffoskitchen counter 76.71%
spiffoskitchen counter 41.46%
spiffoskitchen counter 23.67%
spiffoskitchen counter 23.49%
spiffoskitchen counter 12.63%
spiffoskitchen smallbox 76.71%
spiffoskitchen smallbox 41.46%
spiffoskitchen smallbox 23.67%
spiffosstorage bin 76.71%
spiffosstorage bin 41.46%
spiffosstorage smallbox 76.71%
spiffosstorage smallbox 41.46%
spiffosstorage smallbox 23.67%
theatrekitchen counter 76.71%
theatrekitchen counter 41.46%
Vehicle
Type Container Effective chance
Pack Rat Seat Front 6.53%
Pack Rat Seat Rear 6.53%
Pack Rat Truck Bed 23.67%
Spiffo Trunk 55.95%
Foraging
Amount Skill level Biome: chance Weather modifiers % Month modifiers
Snow Rain Day Night Months available Bonus months Malus months
1 - DeepForest: 30
Farm: 30
FarmLand: 30
ForagingNav: 30
Forest: 30
TownZone: 30
TrailerPark: 30
Vegitation: 30
- - - - - - -

History

Base.FountainCup

Version Description
Build 42.0.0 ContainerName added with value CupFountain.
CustomDrinkSound added with value DrinkingFromMug.
DisplayCategory changed from Junk to WaterContainer.
FillFromDispenserSound added with value GetWaterFromDispenserPlastic.
FillFromLakeSound added with value GetWaterFromLakeSmall.
FillFromTapSound added with value GetWaterFromTapPlasticMedium.
RainFactor added with value 0.5.
Tooltip added with value Tooltip_item_RainFromGroundOnlyPurifyMicrowaveFountainCup.
capacity added with value 0.3.
Build 41.78 WorldStaticModel added with value FountainCup_Ground.
Build 41.69 DisplayCategory added with value Junk.
Build 41.65 Released on this version.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Item

FountainCup.png Base.FountainCup
Source: ProjectZomboid\media\scripts\items_junk.txt

Retrieved: Build 42.0.2
item FountainCup
	{
		DisplayName = Fountain Cup,
		DisplayCategory = WaterContainer,
		Type = Normal,
		Weight = 0.1,
		Icon = FountainCup,
		FillFromDispenserSound = GetWaterFromDispenserPlastic,
		FillFromLakeSound = GetWaterFromLakeSmall,
		FillFromTapSound = GetWaterFromTapPlasticMedium,
		Tooltip = Tooltip_item_RainFromGroundOnlyPurifyMicrowaveFountainCup,
		WorldStaticModel = FountainCup_Ground,

        	component FluidContainer
        	{
			ContainerName   = CupFountain,
			RainFactor	= 0.5,
			capacity        = 0.3,
			CustomDrinkSound = DrinkingFromMug,
		}

See also